Skip to content

Commit

Permalink
Fix PrimeVideoWrapper.kt
Browse files Browse the repository at this point in the history
  • Loading branch information
Ziedelth committed Apr 22, 2024
1 parent c117bbe commit 3ae7df1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class PrimeVideoPlatform :
val animeBanner = requireNotNull(it.getAsJsonObject("show").getAsString("banner")) { "Banner is null" }
val image = requireNotNull(it.getAsString("image")) { "Image is null" }
val computedId = requireNotNull(it.getAsJsonObject("show").getAsString("banner")) { "Id is null" }
val url = requireNotNull(it.getAsJsonObject("show").getAsString("url")) { "Url is null" }
val url = requireNotNull(it.getAsString("url")) { "Url is null" }

Episode(
countryCode = key.countryCode,
Expand Down

0 comments on commit 3ae7df1

Please sign in to comment.