mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
fix: NRE on new event
This commit is contained in:
parent
c9ad6c4252
commit
f9492af50c
1 changed files with 1 additions and 1 deletions
|
|
@ -490,7 +490,7 @@ public sealed class DalamudPluginInterface : IDisposable
|
|||
/// <param name="affectedThisPlugin">If this plugin was affected by the change.</param>
|
||||
internal void NotifyActivePluginsChanged(PluginListInvalidationKind kind, bool affectedThisPlugin)
|
||||
{
|
||||
this.ActivePluginsChanged.Invoke(kind, affectedThisPlugin);
|
||||
this.ActivePluginsChanged?.Invoke(kind, affectedThisPlugin);
|
||||
}
|
||||
|
||||
private void OnLocalizationChanged(string langCode)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue