Skip to content

Commit 3fc0abf

Browse files
committed
Fix removePluginSettings parameter pass issue
1 parent e965b56 commit 3fc0abf

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)