Skip to content

Commit 5272468

Browse files
authored
Merge pull request #46 from coffeemakr/bugfix-uploader-url
Fix uploader url for related streams
2 parents 16b77b5 + 421550e commit 5272468

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/main/java/org/schabi/newpipe/extractor/services/youtube/YoutubeStreamExtractor.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -782,6 +782,11 @@ public String getUploaderName() throws ParsingException {
782782
.select("span").first().text();
783783
}
784784

785+
@Override
786+
public String getUploaderUrl() throws ParsingException {
787+
return ""; // The uploader is not linked
788+
}
789+
785790
@Override
786791
public String getUploadDate() throws ParsingException {
787792
return "";

0 commit comments

Comments
 (0)