Skip to content

Commit 0988313

Browse files
authored
Merge pull request #3786 from Flow-Launcher/removePluginSettings
Fix Plugin Uninstallation Issue
2 parents e965b56 + 3fc0abf commit 0988313

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Flow.Launcher.Core/Plugin/PluginManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -552,9 +552,9 @@ public static void InstallPlugin(UserPlugin plugin, string zipFilePath)
552552
InstallPlugin(plugin, zipFilePath, checkModified: true);
553553
}
554554

555-
public static async Task UninstallPluginAsync(PluginMetadata plugin, bool removePluginFromSettings = true, bool removePluginSettings = false)
555+
public static async Task UninstallPluginAsync(PluginMetadata plugin, bool removePluginSettings = false)
556556
{
557-
await UninstallPluginAsync(plugin, removePluginFromSettings, removePluginSettings, true);
557+
await UninstallPluginAsync(plugin, removePluginFromSettings: true, removePluginSettings: removePluginSettings, checkModified: true);
558558
}
559559

560560
#endregion

0 commit comments

Comments
 (0)