fixing narrator and series update on re-scan

This commit is contained in:
Warnwar 2024-12-02 00:36:08 +00:00
parent c03f18b90a
commit 6cd8aef713

View file

@ -40,6 +40,8 @@ class AbsMetadataFileScanner {
if (key === 'genres' && !abMetadata.genres?.length) continue
if (key === 'tags' && !abMetadata.tags?.length) continue
if (key === 'chapters' && !abMetadata.chapters?.length) continue
if (key === 'narrators' && !abMetadata.narrators?.length) continue
if (key === 'series' && !abMetadata.series?.length) continue
bookMetadata[key] = abMetadata[key]
}