Fix getUploaderUrl() in YoutubeStreamInfoItemExtractor

pull/262/head
wb9688 2020-02-27 09:05:41 +01:00
rodzic db305408e9
commit cdbc751b87
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -159,7 +159,7 @@ public class YoutubeStreamInfoItemExtractor implements StreamInfoItemExtractor {
if (id == null || id.isEmpty()) {
throw new IllegalArgumentException("is empty");
}
return YoutubeChannelLinkHandlerFactory.getInstance().getUrl(id);
return YoutubeChannelLinkHandlerFactory.getInstance().getUrl("channel/" + id);
} catch (Exception e) {
throw new ParsingException("Could not get uploader url");
}