fix mangasee latest (#515)

This commit is contained in:
Carlos 2018-09-24 16:54:37 -04:00 committed by GitHub
parent 0da5cafc04
commit de6c796d03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -5,8 +5,8 @@ ext {
appName = 'Tachiyomi: Mangasee'
pkgNameSuffix = 'en.mangasee'
extClass = '.Mangasee'
extVersionCode = 3
extVersionSuffix = 1
extVersionCode = 4
extVersionSuffix = 2
libVersion = '1.2'
}

View File

@ -168,7 +168,7 @@ class Mangasee : ParsedHttpSource() {
override fun latestUpdatesSelector(): String = "a.latestSeries"
override fun latestUpdatesRequest(page: Int): Request {
val url = "http://mangaseeonline.net/home/latest.request.php"
val url = "http://mangaseeonline.us/home/latest.request.php"
val (body, requestUrl) = convertQueryToPost(page, url)
return POST(requestUrl, catalogHeaders, body.build())
}