mirror of
https://github.com/gotson/komga.git
synced 2025-12-21 16:03:03 +01:00
fix: series genre is not imported from metadata
This commit is contained in:
parent
18774cfdc5
commit
58fac365ad
1 changed files with 1 additions and 1 deletions
|
|
@ -134,7 +134,7 @@ class MetadataLifecycle(
|
|||
title = patches.mostFrequent { it.title },
|
||||
titleSort = patches.mostFrequent { it.titleSort },
|
||||
status = patches.mostFrequent { it.status },
|
||||
genres = patches.mapNotNull { it.genres }.flatten().toSet(),
|
||||
genres = patches.mapNotNull { it.genres }.flatten().toSet().ifEmpty { null },
|
||||
language = patches.mostFrequent { it.language },
|
||||
summary = null,
|
||||
readingDirection = patches.mostFrequent { it.readingDirection },
|
||||
|
|
|
|||
Loading…
Reference in a new issue