Fixed dmzj search error (#1692)

This commit is contained in:
vance 2019-10-23 06:49:50 +08:00 committed by arkon
parent cf9087506f
commit 21ef162980
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ ext {
appName = 'Tachiyomi: Dmzj'
pkgNameSuffix = 'zh.dmzj'
extClass = '.Dmzj'
extVersionCode = 6
extVersionCode = 7
libVersion = '1.2'
}

View File

@ -45,7 +45,7 @@ class Dmzj : HttpSource() {
title = obj.getString("comic_name")
thumbnail_url = cleanUrl(obj.getString("comic_cover"))
author = obj.optString("comic_author")
url = "/comic/comic_$cid.json"
url = "/comic/comic_$cid.json?version=2.7.019"
})
}
return MangasPage(ret, false)
@ -67,7 +67,7 @@ class Dmzj : HttpSource() {
"连载中" -> SManga.ONGOING
else -> SManga.UNKNOWN
}
url = "/comic/comic_$cid.json"
url = "/comic/comic_$cid.json?version=2.7.019"
})
}
return MangasPage(ret, arr.length() != 0)