mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2025-01-10 22:09:23 +01:00
Use old tags if they match
This commit is contained in:
parent
c745ac7350
commit
872f5319f6
@ -253,7 +253,8 @@ class MangaInfoPresenter(
|
||||
}
|
||||
|
||||
var tagsString = tags?.joinToString(", ")
|
||||
if (tagsString.isNullOrBlank() && manga.currentGenres() != manga.originalGenres()) {
|
||||
if ((tagsString.isNullOrBlank() && manga.currentGenres() != manga.originalGenres())
|
||||
|| tagsString == manga.originalGenres()) {
|
||||
manga.genre = manga.originalGenres()
|
||||
changed = true
|
||||
} else if (!tagsString.isNullOrBlank() && tagsString != manga.currentGenres()) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user