diff --git a/SoraStream/src/main/kotlin/com/hexated/SoraExtractor.kt b/SoraStream/src/main/kotlin/com/hexated/SoraExtractor.kt index 97e78b8d..526aea2a 100644 --- a/SoraStream/src/main/kotlin/com/hexated/SoraExtractor.kt +++ b/SoraStream/src/main/kotlin/com/hexated/SoraExtractor.kt @@ -936,9 +936,9 @@ object SoraExtractor : SoraStream() { ) app.get(serverUrl) .parsedSafe()?.links?.filter { it.resolutionStr == "RAW" && it.hls == true }?.forEach { source -> - val tlName = if (translation == "sub") "Raw" else "English Dub" + val translation = if (tl == "sub") "Raw" else "English Dub" M3u8Helper.generateM3u8( - "Vrv [$tlName]", + "Vrv [$translation]", source.link ?: return@apmap, "https://static.crunchyroll.com/", ).forEach(callback)