You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extractor/src/main/java/org/schabi/newpipe/extractor/services/peertube/extractors/PeertubeStreamExtractor.java
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ public String getDescription() throws ParsingException {
76
76
try {
77
77
desc = JsonUtils.getString(json, "description");
78
78
} catch (ParsingExceptione) {
79
-
return"No description";
79
+
return"";
80
80
}
81
81
if (desc.length() == 250 && desc.substring(247).equals("...")) {
82
82
//if description is shortened, get full description
@@ -256,7 +256,11 @@ public List<String> getTags(){
Copy file name to clipboardExpand all lines: extractor/src/test/java/org/schabi/newpipe/extractor/services/peertube/PeertubeStreamExtractorDefaultTest.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -61,7 +61,7 @@ public void testGetLargeDescription() throws ParsingException {
0 commit comments