Formatting

This commit is contained in:
Thorsten Sommer 2025-06-02 19:12:41 +02:00
parent d81b572819
commit 08ef18156f
No known key found for this signature in database
GPG Key ID: B0B7E2FC074BF1F5

View File

@ -49,11 +49,11 @@ public abstract class MSGComponentBase : ComponentBase, IDisposable, IMessageBus
this.StateHasChanged();
break;
case Event.PLUGINS_RELOADED:
this.Lang = await this.SettingsManager.GetActiveLanguagePlugin();
await this.InvokeAsync(this.StateHasChanged);
break;
}
case Event.PLUGINS_RELOADED:
this.Lang = await this.SettingsManager.GetActiveLanguagePlugin();
await this.InvokeAsync(this.StateHasChanged);
break;
}
await this.ProcessIncomingMessage(sendingComponent, triggeredEvent, data);
});