This commit is contained in:
David 2016-05-24 08:51:08 -03:00
parent 3abfb08090
commit 382ac3470b

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