Fix link intents not working correct with multi langauges enabled

Fixes #1191
This commit is contained in:
Jays2Kings 2022-04-16 17:02:25 -04:00
parent 94fcad3ef5
commit 90db097c21

View file

@ -241,7 +241,7 @@ open class GlobalSearchController(
fun setItems(searchResult: List<GlobalSearchItem>) {
if (extensionFilter != null) {
val results = searchResult.firstOrNull()?.results
if (results != null && results.size == 1) {
if (results != null && searchResult.size == 1 && results.size == 1) {
val manga = results.first().manga
router.replaceTopController(
MangaDetailsController(manga, true)