diff --git a/Torch.Server/Views/PluginsControl.xaml.cs b/Torch.Server/Views/PluginsControl.xaml.cs index dbdc623..356febe 100644 --- a/Torch.Server/Views/PluginsControl.xaml.cs +++ b/Torch.Server/Views/PluginsControl.xaml.cs @@ -76,7 +76,8 @@ namespace Torch.Server.Views private void BrowsPlugins_OnClick(object sender, RoutedEventArgs e) { - var browser = new PluginBrowser(); + _plugins = _server.Managers.GetManager(); + var browser = new PluginBrowser(_plugins); browser.Show(); } }