Skip to content

FoolSlide multisrc: extlib 1.6#17884

Open
furaibo9714 wants to merge 2 commits into
keiyoushi:mainfrom
furaibo9714:foolslide-1.6
Open

FoolSlide multisrc: extlib 1.6#17884
furaibo9714 wants to merge 2 commits into
keiyoushi:mainfrom
furaibo9714:foolslide-1.6

Conversation

@furaibo9714

Copy link
Copy Markdown
Contributor

Checklist:

  • Updated versionCode value in build.gradle.kts
  • Updated baseVersionCode in build.gradle.kts (if updated multisrc theme code)
  • Referenced all related issues in the PR body (e.g. "Closes #xyz")
  • Set the contentWarning configuration in build.gradle.kts appropriately
  • Have not changed source names
  • Have explicitly kept the id if a source's name or language were changed
  • Have tested the modifications by compiling and running the extension through Android Studio
  • Have removed web_hi_res_512.png when adding a new extension
  • This PR is AI-assisted, I have reviewed the changes manually and confirmed they are not slop

Comment thread lib-multisrc/foolslide/src/eu/kanade/tachiyomi/multisrc/foolslide/FoolSlide.kt Outdated
Comment thread lib-multisrc/foolslide/src/eu/kanade/tachiyomi/multisrc/foolslide/FoolSlide.kt Outdated
Comment thread lib-multisrc/foolslide/src/eu/kanade/tachiyomi/multisrc/foolslide/FoolSlide.kt Outdated
Comment thread lib-multisrc/foolslide/src/eu/kanade/tachiyomi/multisrc/foolslide/FoolSlide.kt Outdated
Comment thread lib-multisrc/foolslide/src/eu/kanade/tachiyomi/multisrc/foolslide/FoolSlide.kt Outdated
Comment thread lib-multisrc/foolslide/src/eu/kanade/tachiyomi/multisrc/foolslide/FoolSlide.kt Outdated
Comment thread lib-multisrc/foolslide/src/eu/kanade/tachiyomi/multisrc/foolslide/FoolSlide.kt Outdated
Comment thread lib-multisrc/foolslide/src/eu/kanade/tachiyomi/multisrc/foolslide/FoolSlide.kt Outdated
Comment thread lib-multisrc/foolslide/src/eu/kanade/tachiyomi/multisrc/foolslide/FoolSlide.kt Outdated
Comment thread lib-multisrc/foolslide/src/eu/kanade/tachiyomi/multisrc/foolslide/FoolSlide.kt Outdated
@furaibo9714
furaibo9714 requested a review from AwkwardPeak7 July 24, 2026 16:02
fetchChapters: Boolean,
): SMangaUpdate {
val request = allowAdult(GET(baseUrl + manga.url, headers))
val document = client.newCall(request).await().asJsoup()

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
val document = client.newCall(request).await().asJsoup()
val document = client.newCall(request).awaitSuccess().asJsoup()

fetchDetails: Boolean,
fetchChapters: Boolean,
): SMangaUpdate {
val request = allowAdult(GET(baseUrl + manga.url, headers))

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

consider making an interceptor instead

?.use { response -> pageListParse(response).firstOrNull()?.imageUrl }

override fun mangaDetailsParse(response: Response): SManga = mangaDetailsParse(response.asJsoup())
?.let { url -> client.newCall(allowAdult(GET(url, headers))).execute() }

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

avoid blocking network calls, make methods suspend and use client.get equivilent

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants