2
0
mirror of https://github.com/TeamNewPipe/NewPipeExtractor synced 2025-09-01 06:45:53 +00:00

fix: set musicClientVersion regex capture group

This commit is contained in:
ThetaDev
2023-04-16 19:25:05 +02:00
parent 7dba6e3891
commit 47aa9fed40

View File

@@ -835,7 +835,7 @@ public final class YoutubeParsingHelper {
musicKey = getStringResultFromRegexArray(html, INNERTUBE_API_KEY_REGEXES, 1); musicKey = getStringResultFromRegexArray(html, INNERTUBE_API_KEY_REGEXES, 1);
musicClientVersion = getStringResultFromRegexArray(html, musicClientVersion = getStringResultFromRegexArray(html,
INNERTUBE_CONTEXT_CLIENT_VERSION_REGEXES); INNERTUBE_CONTEXT_CLIENT_VERSION_REGEXES, 1);
musicClientName = Parser.matchGroup1(INNERTUBE_CLIENT_NAME_REGEX, html); musicClientName = Parser.matchGroup1(INNERTUBE_CLIENT_NAME_REGEX, html);
} }