mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Remove short circuit on empty Settings
This commit is contained in:
parent
bc62302a93
commit
cf48e532fa
1 changed files with 1 additions and 1 deletions
|
|
@ -37,7 +37,7 @@ namespace Flow.Launcher.Core.Plugin
|
||||||
_storage = new JsonStorage<ConcurrentDictionary<string, object>>(SettingPath);
|
_storage = new JsonStorage<ConcurrentDictionary<string, object>>(SettingPath);
|
||||||
Settings = await _storage.LoadAsync();
|
Settings = await _storage.LoadAsync();
|
||||||
|
|
||||||
if (Settings != null || Configuration == null)
|
if (Configuration == null)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue