Skip to content

Commit 492771c

Browse files
Merge pull request #2559 from Flow-Launcher/fix-settings-not-loading
Remove short circuit check for empty Settings
2 parents bc62302 + cf48e53 commit 492771c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher.Core/Plugin/JsonRPCPluginSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public async Task InitializeAsync()
3737
_storage = new JsonStorage<ConcurrentDictionary<string, object>>(SettingPath);
3838
Settings = await _storage.LoadAsync();
3939

40-
if (Settings != null || Configuration == null)
40+
if (Configuration == null)
4141
{
4242
return;
4343
}

0 commit comments

Comments
 (0)