mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2024-08-14 23:51:41 +00:00
Fix extractor URL for YouTube.
This commit is contained in:
parent
164ee66e46
commit
53b03761d5
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ public class ServerLauncher extends MultithreadedHttpServerLauncher {
|
|||
Multithreading.runAsync(() -> {
|
||||
try {
|
||||
Sentry.setExtra("videoId", videoId);
|
||||
var extractor = YOUTUBE_SERVICE.getStreamExtractor(videoId);
|
||||
var extractor = YOUTUBE_SERVICE.getStreamExtractor("https://youtube.com/watch?v=" + videoId);
|
||||
extractor.fetchPage();
|
||||
|
||||
Multithreading.runAsync(() -> {
|
||||
|
|
Loading…
Reference in a new issue