Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
lisa committed Dec 23, 2023
1 parent 8ab71d4 commit 9954986
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 @@ -2297,7 +2297,7 @@ object SoraExtractor : SoraStream() {
it.title.equals(
title,
true
) && it.infor.equals(if (season == null) "$year" else "SS ${lastSeason?.minus(1)}") && it.type == if (season == null) "Movie" else "TV"
) && it.infor.contains(if (season == null) "$year" else "SS") && it.type == if (season == null) "Movie" else "TV"
}

val shareId = media?.url?.substringAfterLast("/") ?: return
Expand Down

0 comments on commit 9954986

Please sign in to comment.