diff options
| author | Bond-009 <bond.009@outlook.com> | 2024-04-17 18:44:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-17 10:44:50 -0600 |
| commit | bb018c4adc7916fafb7dac2db9a902be8d20e75d (patch) | |
| tree | eb15d41547a4cf5a1753ff4f70bea581152b15db /Emby.Server.Implementations/Library/CoreResolutionIgnoreRule.cs | |
| parent | 356e05e3af7702b7dfefbba6e936d602c3638055 (diff) | |
Enable nullable for LibraryManager (#11191)
Diffstat (limited to 'Emby.Server.Implementations/Library/CoreResolutionIgnoreRule.cs')
| -rw-r--r-- | Emby.Server.Implementations/Library/CoreResolutionIgnoreRule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Library/CoreResolutionIgnoreRule.cs b/Emby.Server.Implementations/Library/CoreResolutionIgnoreRule.cs index 665d70a41..b01fd93a7 100644 --- a/Emby.Server.Implementations/Library/CoreResolutionIgnoreRule.cs +++ b/Emby.Server.Implementations/Library/CoreResolutionIgnoreRule.cs @@ -29,7 +29,7 @@ namespace Emby.Server.Implementations.Library } /// <inheritdoc /> - public bool ShouldIgnore(FileSystemMetadata fileInfo, BaseItem parent) + public bool ShouldIgnore(FileSystemMetadata fileInfo, BaseItem? parent) { // Don't ignore application folders if (fileInfo.FullName.Contains(_serverApplicationPaths.RootFolderPath, StringComparison.InvariantCulture)) |
