Enable nullable for LibraryManager (#11191)

This commit is contained in:
Bond-009
2024-04-17 18:44:50 +02:00
committed by GitHub
parent 356e05e3af
commit bb018c4adc
11 changed files with 121 additions and 126 deletions

View File

@@ -14,6 +14,6 @@ namespace MediaBrowser.Controller.Resolvers
/// <param name="fileInfo">The file information.</param>
/// <param name="parent">The parent BaseItem.</param>
/// <returns>True if the file should be ignored.</returns>
bool ShouldIgnore(FileSystemMetadata fileInfo, BaseItem parent);
bool ShouldIgnore(FileSystemMetadata fileInfo, BaseItem? parent);
}
}