Skip to content

Commit

Permalink
Fix Prime Video deprecated episodes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ziedelth committed Apr 11, 2024
1 parent 606b4c5 commit 0b934a0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ class FetchDeprecatedEpisodeJob : AbstractJob {
episode.anime!!.countryCode!!.name,
episode.anime!!.countryCode!!.locale,
id
).find { it.getAsString("id") == episode.hash }
).find { episode.hash!!.contains(it.getAsString("id")!!, true) }
}

else -> null
Expand Down

0 comments on commit 0b934a0

Please sign in to comment.