We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b09282 commit 89f8678Copy full SHA for 89f8678
1 file changed
src/main/java/org/schabi/newpipe/extractor/services/youtube/YoutubeStreamExtractor.java
@@ -546,9 +546,9 @@ public String getErrorMessage() {
546
private static final String GET_VIDEO_INFO_URL = "https://www.youtube.com/get_video_info?video_id=" + "%s" +
547
"&el=info&ps=default&eurl=&gl=US&hl=en";
548
549
- private static volatile String decryptionCode = "";
+ private volatile String decryptionCode = "";
550
551
- private static String pageHtml = null;
+ private String pageHtml = null;
552
553
private String getPageHtml(Downloader downloader) throws IOException, ExtractionException{
554
if (pageHtml == null) {
0 commit comments