Fix migration due to variable shadowing (#4689)
(cherry picked from commit 472ce5a5e4fb7bdc3f52e4db2d68a5749d59fee1) # Conflicts: # app/src/main/java/eu/kanade/tachiyomi/ui/browse/migration/search/SearchController.kt
This commit is contained in:
parent
12962b3486
commit
3a148c73ac
@ -109,7 +109,8 @@ class SearchController(
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
newManga = manga
|
newManga = manga
|
||||||
val dialog = MigrationDialog(manga, newManga ?: return, this)
|
val dialog =
|
||||||
|
MigrationDialog(this.manga ?: return, newManga ?: return, this)
|
||||||
dialog.targetController = this
|
dialog.targetController = this
|
||||||
dialog.showDialog(router)
|
dialog.showDialog(router)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user