fix: set musicClientVersion regex capture group

This commit is contained in:
ThetaDev 2023-04-16 19:25:05 +02:00
parent 7dba6e3891
commit 47aa9fed40
1 changed files with 1 additions and 1 deletions

View File

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