We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a256d0 commit b441910Copy full SHA for b441910
1 file changed
extractor/src/main/java/org/schabi/newpipe/extractor/playlist/PlaylistInfoItem.java
@@ -2,6 +2,8 @@
2
3
import org.schabi.newpipe.extractor.InfoItem;
4
5
+import javax.annotation.Nullable;
6
+
7
public class PlaylistInfoItem extends InfoItem {
8
9
private String uploaderName;
@@ -25,11 +27,12 @@ public void setUploaderName(final String uploaderName) {
25
27
this.uploaderName = uploaderName;
26
28
}
29
30
+ @Nullable
31
public String getUploaderUrl() {
32
return uploaderUrl;
33
34
- public void setUploaderUrl(final String uploaderUrl) {
35
+ public void setUploaderUrl(@Nullable final String uploaderUrl) {
36
this.uploaderUrl = uploaderUrl;
37
38
0 commit comments