[RU]GroupLe fix wrong detect changing url (#3492)

* [RU]GroupLe fix wrong detect changing url

* change message

* domain change alt message
This commit is contained in:
Eshlender 2024-06-09 17:35:36 +05:00 committed by GitHub
parent c83379db15
commit 9c2f0af4cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 2 deletions

View File

@ -2,4 +2,4 @@ plugins {
id("lib-multisrc")
}
baseVersionCode = 22
baseVersionCode = 23

View File

@ -53,7 +53,13 @@ abstract class GroupLe(
.contains("internal/redirect") or (response.code == 301)
)
) {
throw IOException("Ссылка на мангу была изменена. Перемигрируйте мангу на тот же (или смежный с GroupLe) источник или передобавьте из Поисковика/Каталога.")
if (originalRequest.url.toString().contains("/list?")) {
throw IOException("Смените домен: Поисковик > Расширения > $name > ⚙\uFE0F")
}
throw IOException(
"URL серии изменился. Перенесите/мигрируйте с $name " +
"на $name (или смежный с GroupLe), чтобы список глав обновился",
)
}
response
}