Ability to turn off Metadata Parsing (#3872)
This commit is contained in:
parent
fa8d778c8d
commit
36aa5f5c85
63 changed files with 4257 additions and 186 deletions
|
|
@ -521,6 +521,11 @@ public class ScannerService : IScannerService
|
|||
// Validations are done, now we can start actual scan
|
||||
_logger.LogInformation("[ScannerService] Beginning file scan on {LibraryName}", library.Name);
|
||||
|
||||
if (!library.EnableMetadata)
|
||||
{
|
||||
_logger.LogInformation("[ScannerService] Warning! {LibraryName} has metadata turned off", library.Name);
|
||||
}
|
||||
|
||||
// This doesn't work for something like M:/Manga/ and a series has library folder as root
|
||||
var shouldUseLibraryScan = !(await _unitOfWork.LibraryRepository.DoAnySeriesFoldersMatch(libraryFolderPaths));
|
||||
if (!shouldUseLibraryScan)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue