Fix getUploaderUrl() in YoutubeStreamInfoItemExtractor

This commit is contained in:
wb9688 2020-02-27 09:05:41 +01:00
parent db305408e9
commit cdbc751b87
1 changed files with 1 additions and 1 deletions

View File

@ -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");
}