Skip to content

Commit e065743

Browse files
remove await to speedup startup
1 parent 4232ef7 commit e065743

File tree

1 file changed

+2
-2
lines changed
  • Plugins/Flow.Launcher.Plugin.PluginsManager

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public async Task InitAsync(PluginInitContext context)
3737
contextMenu = new ContextMenu(Context);
3838
pluginManager = new PluginsManager(Context, Settings);
3939

40-
await pluginManager.UpdateManifestAsync();
40+
_ = pluginManager.UpdateManifestAsync();
4141
}
4242

4343
public List<Result> LoadContextMenus(Result selectedResult)
@@ -74,4 +74,4 @@ public string GetTranslatedPluginDescription()
7474
return Context.API.GetTranslation("plugin_pluginsmanager_plugin_description");
7575
}
7676
}
77-
}
77+
}

0 commit comments

Comments
 (0)