Fixed base language plugin not being treated as a running plugin

This commit is contained in:
Thorsten Sommer 2025-04-12 21:04:04 +02:00
parent 72715202c7
commit 383f9efded
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -200,6 +200,7 @@ public static partial class PluginFactory
if (startedBasePlugin is PluginLanguage languagePlugin)
{
BASE_LANGUAGE_PLUGIN = languagePlugin;
RUNNING_PLUGINS.Add(languagePlugin);
LOG.LogInformation($"Successfully started the base language plugin: Id='{languagePlugin.Id}', Type='{languagePlugin.Type}', Name='{languagePlugin.Name}', Version='{languagePlugin.Version}'");
}
else