mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2024-12-12 21:30:29 +05:30
Fix extractor not fetching page.
This commit is contained in:
parent
fa5bf890f2
commit
1b41b75243
@ -24,7 +24,9 @@ import static org.schabi.newpipe.extractor.services.youtube.YoutubeParsingHelper
|
||||
public class VideoHelpers {
|
||||
public static void handleNewVideo(String url, long time, me.kavin.piped.utils.obj.db.Channel channel) {
|
||||
try {
|
||||
handleNewVideo(YOUTUBE_SERVICE.getStreamExtractor(url), time, channel);
|
||||
var extractor = YOUTUBE_SERVICE.getStreamExtractor(url);
|
||||
extractor.fetchPage();
|
||||
handleNewVideo(extractor, time, channel);
|
||||
} catch (Exception e) {
|
||||
ExceptionHandler.handle(e);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user