switch to base url (#517)

This commit is contained in:
Carlos 2018-09-25 11:52:53 -04:00 committed by GitHub
parent de6c796d03
commit c375fafea3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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.us/home/latest.request.php"
val url = "$baseUrl/home/latest.request.php"
val (body, requestUrl) = convertQueryToPost(page, url)
return POST(requestUrl, catalogHeaders, body.build())
}