Remove short circuit on empty Settings

This commit is contained in:
Garulf 2024-02-11 02:33:48 -05:00
parent bc62302a93
commit cf48e532fa

View file

@ -37,7 +37,7 @@ namespace Flow.Launcher.Core.Plugin
_storage = new JsonStorage<ConcurrentDictionary<string, object>>(SettingPath);
Settings = await _storage.LoadAsync();
if (Settings != null || Configuration == null)
if (Configuration == null)
{
return;
}