mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
catch more json exception
This commit is contained in:
parent
019cd51333
commit
17e5bb8d53
1 changed files with 1 additions and 1 deletions
|
|
@ -58,7 +58,7 @@ namespace Wox.Infrastructure.Storage
|
|||
{
|
||||
_data = JsonConvert.DeserializeObject<T>(searlized, _serializerSettings);
|
||||
}
|
||||
catch (JsonSerializationException e)
|
||||
catch (JsonException e)
|
||||
{
|
||||
LoadDefault();
|
||||
Log.Exception($"|JsonStrorage.Deserialize|Deserialize error for json <{FilePath}>", e);
|
||||
|
|
|
|||
Loading…
Reference in a new issue