diff --git a/app/src/main/java/org/koitharu/kotatsu/core/parser/site/GroupleRepository.kt b/app/src/main/java/org/koitharu/kotatsu/core/parser/site/GroupleRepository.kt index 44849b57b..33f1c5f60 100644 --- a/app/src/main/java/org/koitharu/kotatsu/core/parser/site/GroupleRepository.kt +++ b/app/src/main/java/org/koitharu/kotatsu/core/parser/site/GroupleRepository.kt @@ -118,7 +118,7 @@ abstract class GroupleRepository( val regex = Regex("['\"].*?['\"]") return matches.map { x -> val parts = regex.findAll(x.value).toList() - val url = parts[1].value.removeSurrounding('"', '\'') + + val url = parts[0].value.removeSurrounding('"', '\'') + parts[2].value.removeSurrounding('"', '\'') MangaPage( id = url.longHashCode(),