Skip to content

Commit 31131ea

Browse files
Remove download success notification
1 parent a1d7e44 commit 31131ea

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,6 @@ internal async Task InstallOrUpdateAsync(UserPlugin plugin)
136136
{
137137
await Http.DownloadAsync(plugin.UrlDownload, filePath).ConfigureAwait(false);
138138

139-
Context.API.ShowMsg(Context.API.GetTranslation("plugin_pluginsmanager_downloading_plugin"),
140-
string.Format(Context.API.GetTranslation("plugin_pluginsmanager_download_success"), plugin.Name));
141-
142139
Install(plugin, filePath);
143140
}
144141
catch (Exception e)
@@ -223,10 +220,6 @@ where existingPlugin.Metadata.Version.CompareTo(pluginFromManifest.Version) <
223220
await Http.DownloadAsync(x.PluginNewUserPlugin.UrlDownload, downloadToFilePath)
224221
.ConfigureAwait(false);
225222

226-
Context.API.ShowMsg(
227-
Context.API.GetTranslation("plugin_pluginsmanager_downloading_plugin"),
228-
string.Format(Context.API.GetTranslation("plugin_pluginsmanager_download_success"), x.Name));
229-
230223
Install(x.PluginNewUserPlugin, downloadToFilePath);
231224

232225
Context.API.RestartApp();

0 commit comments

Comments
 (0)