2
0
Эх сурвалжийг харах

Merge pull request #4509 from crobibero/plugin-save-null-ref

Fix null reference when saving plugin configuration
Claus Vium 4 жил өмнө
parent
commit
49ebbcf87e

+ 1 - 1
MediaBrowser.Common/Plugins/BasePlugin.cs

@@ -276,7 +276,7 @@ namespace MediaBrowser.Common.Plugins
 
             SaveConfiguration();
 
-            ConfigurationChanged.Invoke(this, configuration);
+            ConfigurationChanged?.Invoke(this, configuration);
         }
 
         /// <inheritdoc />