From e90ca41c3cca96692f0cf4e0b0cb7a78c3bb6759 Mon Sep 17 00:00:00 2001 From: Bishbash777 <50243964+Bishbash777@users.noreply.github.com> Date: Wed, 28 Jul 2021 09:05:13 +0100 Subject: [PATCH] properly init new updated PluginBrowser --- Torch.Server/Views/PluginsControl.xaml.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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(); } }