Update extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeStreamExtractor.java

Co-authored-by: Stypox <stypox@pm.me>
This commit is contained in:
XiangRongLin 2022-03-15 17:10:05 +01:00 committed by GitHub
parent 545522b80f
commit e726437da3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -542,7 +542,7 @@ public class YoutubeStreamExtractor extends StreamExtractor {
private String tryDecryption(final String url, final String videoId) {
try {
return YoutubeThrottlingDecrypter.apply(url, videoId);
} catch (ParsingException e) {
} catch (final ParsingException e) {
return url;
}
}