Skip to content

Commit debc1e1

Browse files
Jack251970TBM13
authored andcommitted
Fix removePluginSettings parameter pass issue
1 parent e1e4319 commit debc1e1

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
@@ -541,9 +541,9 @@ public static void InstallPlugin(UserPlugin plugin, string zipFilePath)
541541
InstallPlugin(plugin, zipFilePath, checkModified: true);
542542
}
543543

544-
public static async Task UninstallPluginAsync(PluginMetadata plugin, bool removePluginFromSettings = true, bool removePluginSettings = false)
544+
public static async Task UninstallPluginAsync(PluginMetadata plugin, bool removePluginSettings = false)
545545
{
546-
await UninstallPluginAsync(plugin, removePluginFromSettings, removePluginSettings, true);
546+
await UninstallPluginAsync(plugin, removePluginFromSettings: true, removePluginSettings: removePluginSettings, checkModified: true);
547547
}
548548

549549
#endregion

0 commit comments

Comments
 (0)