diff --git a/Flow.Launcher/PublicAPIInstance.cs b/Flow.Launcher/PublicAPIInstance.cs index 06e17baf0..17d0a8752 100644 --- a/Flow.Launcher/PublicAPIInstance.cs +++ b/Flow.Launcher/PublicAPIInstance.cs @@ -296,7 +296,7 @@ namespace Flow.Launcher { foreach (var savable in _pluginJsonStorages.Values) { - savable?.Save(); + savable.Save(); } } @@ -514,7 +514,7 @@ namespace Flow.Launcher { foreach (var savable in _pluginBinaryStorages.Values) { - savable?.Save(); + savable.Save(); } }