Skip to content

Commit 37362da

Browse files
AquaManga (EN): Fix no results found (#13844)
Aqua Manga (EN): Fix no results found The website no longer supports the 'madara_load_more' AJAX endpoint for search or manga listings. Switching to standard GET requests (LoadMoreStrategy.Never) to restore functionality. Also incremented overrideVersionCode. Co-authored-by: MuhamadSyabitHidayattulloh <201265988+MuhamadSyabitHidayattulloh@users.noreply.github.com>
1 parent a1c51dd commit 37362da

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/en/aquamanga/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ext {
33
extClass = '.AquaManga'
44
themePkg = 'madara'
55
baseUrl = 'https://aquareader.net'
6-
overrideVersionCode = 9
6+
overrideVersionCode = 10
77
isNsfw = false
88
}
99

src/en/aquamanga/src/eu/kanade/tachiyomi/extension/en/aquamanga/AquaManga.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import okhttp3.Headers
66
import kotlin.random.Random
77

88
class AquaManga : Madara("Aqua Manga", "https://aquareader.net", "en") {
9-
override val useLoadMoreRequest = LoadMoreStrategy.Always
9+
override val useLoadMoreRequest = LoadMoreStrategy.Never
1010

1111
override fun headersBuilder(): Headers.Builder = super.headersBuilder()
1212
.add("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8")

0 commit comments

Comments
 (0)