2
0
mirror of https://github.com/TeamNewPipe/NewPipeExtractor synced 2025-08-30 22:05:18 +00:00

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

View File

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