Skip to content

Commit 71043be

Browse files
committed
Fix string format issue
1 parent 2a4bd50 commit 71043be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Plugins/Flow.Launcher.Plugin.PluginsManager/PluginsManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -793,7 +793,7 @@ private async Task UninstallAsync(PluginMetadata plugin)
793793
{
794794
Context.API.LogException(ClassName, e.Message, e);
795795
Context.API.ShowMsgError(Context.API.GetTranslation("plugin_pluginsmanager_uninstall_error_title"),
796-
Context.API.GetTranslation("plugin_pluginsmanager_plugin_modified_error"));
796+
string.Format(Context.API.GetTranslation("plugin_pluginsmanager_plugin_modified_error"), plugin.Name));
797797
}
798798
}
799799
}

0 commit comments

Comments
 (0)