1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00

New: Improve Manual Import logging when not parsing files

This commit is contained in:
bakerboy448 2023-02-04 02:06:59 -06:00 committed by GitHub
parent ad42d4a14c
commit 83f6359063
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -246,6 +246,7 @@ private List<ManualImportItem> ProcessFolder(string rootFolder, string baseFolde
if (files.Count() > 100) if (files.Count() > 100)
{ {
_logger.Warn("Unable to determine series from folder name and found more than 100 files. Skipping parsing");
return ProcessDownloadDirectory(rootFolder, files); return ProcessDownloadDirectory(rootFolder, files);
} }