fix: Don't change the url when retrieving chapters

Fixes GH-2
This commit is contained in:
ziro 2024-01-16 13:10:19 +07:00
parent aba53cd91a
commit 3cdf0edb71
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6

View file

@ -345,7 +345,7 @@ class MangaDetailsPresenter(
var chapterError: java.lang.Exception? = null
val chapters = async(Dispatchers.IO) {
try {
source.getChapterList(manga)
source.getChapterList(manga.copy())
} catch (e: Exception) {
chapterError = e
emptyList()