Skip to content

Commit

Permalink
Merge pull request #405 from Shikkanime/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
Ziedelth authored Apr 22, 2024
2 parents d521e00 + d9cd3c8 commit c117bbe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ val bcprovVersion = "1.78.1"
val javaImageScalingVersion = "0.8.6"
val firebaseVersion = "9.2.0"

val jdaVersion = "5.0.0-beta.22"
val jdaVersion = "5.0.0-beta.23"
val twitter4jVersion = "4.0.7"
val twitter4jV2Version = "1.4.3"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ object PrimeVideoWrapper {
val showName = document.selectFirst("h1[data-automation-id=\"title\"]")!!.text()
val showBanner = document.selectFirst("img[data-testid=\"base-image\"]")!!.attr("src")
val showDescription = document.selectFirst(".dv-dp-node-synopsis")!!.text()
val domEpisodes = document.selectFirst("ol.GG33WY")!!.select("li.c5qQpO")
val domEpisodes = document.selectFirst("ol.SIGk7D")?.select("li.c5qQpO") ?: return emptyList()

return domEpisodes.mapNotNull { domEpisode ->
val episodeTitle = domEpisode.selectFirst("span.P1uAb6")!!.text()
Expand Down

0 comments on commit c117bbe

Please sign in to comment.