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