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 db6b3b2 commit 1db463bCopy full SHA for 1db463b
1 file changed
extractor/src/test/java/org/schabi/newpipe/extractor/services/DefaultTests.java
@@ -48,6 +48,11 @@ public static void defaultTestListOfItems(StreamingService expectedService, List
48
assertExpectedLinkType(expectedService, uploaderUrl, LinkType.CHANNEL);
49
}
50
51
+ final String uploaderAvatarUrl = streamInfoItem.getUploaderAvatarUrl();
52
+ if (!isNullOrEmpty(uploaderAvatarUrl)) {
53
+ assertIsSecureUrl(uploaderAvatarUrl);
54
+ }
55
+
56
assertExpectedLinkType(expectedService, streamInfoItem.getUrl(), LinkType.STREAM);
57
58
if (!isNullOrEmpty(streamInfoItem.getTextualUploadDate())) {
0 commit comments