diff options
| author | Bond-009 <bond.009@outlook.com> | 2021-03-24 21:06:03 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-24 21:06:03 +0100 |
| commit | 066c19a26b1dbc36c20439426110738b2ce1c2d6 (patch) | |
| tree | f9077d26961688ad60bce14a139ddc0bb6b7beb6 /Emby.Server.Implementations/Library/LibraryManager.cs | |
| parent | 8410a9a26601d754e3c8bed36641c990f1d0e22b (diff) | |
Fix possible null ref exception
Diffstat (limited to 'Emby.Server.Implementations/Library/LibraryManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/Library/LibraryManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Library/LibraryManager.cs b/Emby.Server.Implementations/Library/LibraryManager.cs index 46a7feb7f..c18838caf 100644 --- a/Emby.Server.Implementations/Library/LibraryManager.cs +++ b/Emby.Server.Implementations/Library/LibraryManager.cs @@ -208,7 +208,7 @@ namespace Emby.Server.Implementations.Library /// Gets or sets the list of entity resolution ignore rules. /// </summary> /// <value>The entity resolution ignore rules.</value> - private IResolverIgnoreRule[] EntityResolutionIgnoreRules { get; set; } + private IResolverIgnoreRule[] EntityResolutionIgnoreRules { get; set; } = Array.Empty<IResolverIgnoreRule>(); /// <summary> /// Gets or sets the list of currently registered entity resolvers. |
