Merge pull request #2559 from Flow-Launcher/fix-settings-not-loading

Remove short circuit check for empty Settings
This commit is contained in:
VictoriousRaptor 2024-02-11 15:51:07 +08:00 committed by GitHub
commit 492771c1bb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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;
}