From 460080ef04e6e7779ce1662c56943d18a2483889 Mon Sep 17 00:00:00 2001 From: Isaac Marovitz <42140194+IsaacMarovitz@users.noreply.github.com> Date: Sun, 5 Mar 2023 11:36:56 +0000 Subject: [PATCH] Log corrupted DLC json --- .../UI/ViewModels/DownloadableContentManagerViewModel.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Ryujinx.Ava/UI/ViewModels/DownloadableContentManagerViewModel.cs b/Ryujinx.Ava/UI/ViewModels/DownloadableContentManagerViewModel.cs index c47277742..c92f46085 100644 --- a/Ryujinx.Ava/UI/ViewModels/DownloadableContentManagerViewModel.cs +++ b/Ryujinx.Ava/UI/ViewModels/DownloadableContentManagerViewModel.cs @@ -14,6 +14,7 @@ using Ryujinx.Ava.Common.Locale; using Ryujinx.Ava.UI.Helpers; using Ryujinx.Ava.UI.Models; using Ryujinx.Common.Configuration; +using Ryujinx.Common.Logging; using Ryujinx.Common.Utilities; using Ryujinx.HLE.FileSystem; using System; @@ -103,6 +104,7 @@ namespace Ryujinx.Ava.UI.ViewModels } catch { + Logger.Error?.Print(LogClass.Configuration, "Downloadable Content JSON failed to deserialize."); _downloadableContentContainerList = new List(); }