Update:Scanner recognizes asin in book folder names #1852

This commit is contained in:
advplyr 2023-10-14 15:04:16 -05:00
parent dcdd4bb20b
commit 07ad81969c
3 changed files with 59 additions and 16 deletions

View file

@ -55,7 +55,7 @@ class AbsMetadataFileScanner {
bookMetadata.chapters = abMetadata.chapters
}
for (const key in abMetadata.metadata) {
if (abMetadata.metadata[key] === undefined) continue
if (abMetadata.metadata[key] === undefined || abMetadata.metadata[key] === null) continue
bookMetadata[key] = abMetadata.metadata[key]
}
}