Skip to content

Commit cdbc751

Browse files
committed
Fix getUploaderUrl() in YoutubeStreamInfoItemExtractor
1 parent db30540 commit cdbc751

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeStreamInfoItemExtractor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public String getUploaderUrl() throws ParsingException {
159159
if (id == null || id.isEmpty()) {
160160
throw new IllegalArgumentException("is empty");
161161
}
162-
return YoutubeChannelLinkHandlerFactory.getInstance().getUrl(id);
162+
return YoutubeChannelLinkHandlerFactory.getInstance().getUrl("channel/" + id);
163163
} catch (Exception e) {
164164
throw new ParsingException("Could not get uploader url");
165165
}

0 commit comments

Comments
 (0)