1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-11-12 05:03:00 +00:00

Merge remote-tracking branch 'origin/master'

This commit is contained in:
Weblate
2016-05-24 13:51:33 +02:00

View File

@@ -779,7 +779,7 @@ public class YoutubeStreamExtractor extends StreamExtractor {
String functionPattern = "("
+ decryptionFuncName.replace("$", "\\$")
+ "=function\\([a-zA-Z0-9_]*\\)\\{.+?\\})";
+ "=function\\([a-zA-Z0-9_]+\\)\\{.+?\\})";
decryptionFunc = "var " + Parser.matchGroup1(functionPattern, playerCode) + ";";
helperObjectName = Parser