Merge pull request #1511 from VictoriousRaptor/FixPluginManifestUpdateDev

[DEV][Plugins Manager] Remove await in updating plugin manifest to speedup startup
This commit is contained in:
Kevin Zhang 2022-11-02 10:49:43 -05:00 committed by GitHub
commit 805680e250
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,7 @@ namespace Flow.Launcher.Plugin.PluginsManager
contextMenu = new ContextMenu(Context);
pluginManager = new PluginsManager(Context, Settings);
await pluginManager.UpdateManifestAsync();
_ = pluginManager.UpdateManifestAsync();
}
public List<Result> LoadContextMenus(Result selectedResult)
@ -74,4 +74,4 @@ namespace Flow.Launcher.Plugin.PluginsManager
return Context.API.GetTranslation("plugin_pluginsmanager_plugin_description");
}
}
}
}