Fix migrate manga menu using the old manga view

This commit is contained in:
Jobobby04 2020-05-28 15:20:04 -04:00
parent 498f69869a
commit 80e3229cae

View File

@ -438,7 +438,7 @@ class MigrationListController(bundle: Bundle? = null) :
it.controller() !is MangaAllInOneController && it.controller() !is MangaAllInOneController &&
it.controller() !is MigrationListController && it.controller() !is MigrationListController &&
it.controller() !is PreMigrationController it.controller() !is PreMigrationController
} + MangaController(manga).withFadeTransaction() // TODO MangaAllInOneController } + if (preferences.eh_useNewMangaInterface().get()) MangaAllInOneController(manga).withFadeTransaction() else MangaController(manga).withFadeTransaction()
router.setBackstack(newStack, FadeChangeHandler()) router.setBackstack(newStack, FadeChangeHandler())
return@launchUI return@launchUI
} }