asia2tv fix search (#605)

* Update build.gradle

* asia2tv fix search
This commit is contained in:
Ahmed gamal
2022-06-26 00:02:32 +02:00
committed by GitHub
parent 1bcc323093
commit c2f57b507f
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'asia2tv'
pkgNameSuffix = 'ar.asia2tv'
extClass = '.Asia2TV'
extVersionCode = 2
extVersionCode = 3
libVersion = '12'
}

View File

@ -213,7 +213,7 @@ class Asia2TV : ConfigurableAnimeSource, ParsedAnimeHttpSource() {
override fun searchAnimeRequest(page: Int, query: String, filters: AnimeFilterList): Request {
val url = if (query.isNotBlank()) {
"$baseUrl/page/$page/?s=l$query"
"$baseUrl/page/$page/?s=$query"
} else {
(if (filters.isEmpty()) getFilterList() else filters).forEach { filter ->
when (filter) {