Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lisa committed Dec 23, 2023
1 parent 51d8c74 commit 0d09638
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SoraStream/src/main/kotlin/com/hexated/SoraExtractor.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2296,7 +2296,7 @@ object SoraExtractor : SoraStream() {
it.title.equals(
title,
true
) && it.infor == if (season == null) "$year" else "SS $lastSeason" && it.type == if (season == null) "Movie" else "TV"
) && it.infor.equals(if (season == null) "$year" else "SS $lastSeason") && it.type == if (season == null) "Movie" else "TV"
} ?: mediaRes.find {
it.title.equals(
title,
Expand Down

0 comments on commit 0d09638

Please sign in to comment.