Skip to content

Commit

Permalink
fix dercrypt error due to wrong dollar sign detection
Browse files Browse the repository at this point in the history
  • Loading branch information
theScrabi committed Mar 14, 2019
1 parent 536365c commit e072bf6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -34,7 +34,7 @@
/*
* Created by Christian Schabesberger on 06.08.15.
*
* Copyright (C) Christian Schabesberger 2018 <chris.schabesberger@mailbox.org>
* Copyright (C) Christian Schabesberger 2019 <chris.schabesberger@mailbox.org>
* YoutubeStreamExtractor.java is part of NewPipe.
*
* NewPipe is free software: you can redistribute it and/or modify
Expand Down Expand Up @@ -571,7 +571,7 @@ public String getErrorMessage() {
private static final String VERIFIED_URL_PARAMS = "&has_verified=1&bpctr=9999999999";

private final static String DECYRYPTION_SIGNATURE_FUNCTION_REGEX =
"(\\w+)\\s*=\\s*function\\((\\w+)\\)\\{\\s*\\2=\\s*\\2\\.split\\(\"\"\\)\\s*;";
"([\\w$]+)\\s*=\\s*function\\((\\w+)\\)\\{\\s*\\2=\\s*\\2\\.split\\(\"\"\\)\\s*;";
private final static String DECRYPTION_AKAMAIZED_STRING_REGEX =
"yt\\.akamaized\\.net/\\)\\s*\\|\\|\\s*.*?\\s*c\\s*&&\\s*d\\.set\\([^,]+\\s*,\\s*(:encodeURIComponent\\s*\\()([a-zA-Z0-9$]+)\\(";
private final static String DECRYPTION_AKAMAIZED_SHORT_STRING_REGEX =
Expand Down
Expand Up @@ -323,7 +323,7 @@ public void testServiceId() {

@Test
public void testName() throws Exception {
assertEquals("CaptainDisillusion", extractor.getName());
assertEquals("Captain Disillusion", extractor.getName());
}

@Test
Expand Down

0 comments on commit e072bf6

Please sign in to comment.