mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
add nonnull check
This commit is contained in:
parent
2793c8dd03
commit
e5c98e61c8
1 changed files with 1 additions and 1 deletions
|
|
@ -55,7 +55,7 @@ namespace Wox.Infrastructure.Storage
|
|||
{
|
||||
try
|
||||
{
|
||||
_data = JsonConvert.DeserializeObject<T>(searlized, _serializerSettings);
|
||||
_data = JsonConvert.DeserializeObject<T>(searlized, _serializerSettings).NonNull();
|
||||
}
|
||||
catch (JsonSerializationException e)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue