1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-06-27 15:43:21 +00:00
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