Added ignore for json serialize errors

This commit is contained in:
Marcel Baumgartner
2023-07-02 20:48:47 +02:00
parent fe21668a2b
commit 016f50fb1c
2 changed files with 1 additions and 1 deletions

View File

@@ -243,6 +243,7 @@ public class WingsConsole : IDisposable
} }
} }
catch(JsonReaderException){} catch(JsonReaderException){}
catch(JsonSerializationException){}
catch (Exception e) catch (Exception e)
{ {
if (!Disconnecting) if (!Disconnecting)

View File

@@ -32,7 +32,6 @@ using Moonlight.App.Services.SupportChat;
using Sentry; using Sentry;
using Serilog; using Serilog;
using Serilog.Events; using Serilog.Events;
using Serilog.Sinks.SystemConsole.Themes;
namespace Moonlight namespace Moonlight
{ {