We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a18a777 commit e2811ceCopy full SHA for e2811ce
Flow.Launcher.Core/Plugin/PluginManager.cs
@@ -60,9 +60,9 @@ public static void Save()
60
61
public static async ValueTask DisposePluginsAsync()
62
{
63
- foreach (var plugin in AllPlugins)
+ foreach (var pluginPair in AllPlugins)
64
65
- switch (plugin)
+ switch (pluginPair.Plugin)
66
67
case IDisposable disposable:
68
disposable.Dispose();
0 commit comments