Skip to content

Commit 65e7bc5

Browse files
authored
Update PeertubeTrendingLinkHandlerFactory.java
correcting Peertube local trending api URL (per #10685 in main NewPipe repo); see https://docs.joinpeertube.org/api-rest-reference.html#tag/Video/operation/getVideos
1 parent f276caf commit 65e7bc5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extractor/src/main/java/org/schabi/newpipe/extractor/services/peertube/linkHandler/PeertubeTrendingLinkHandlerFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public final class PeertubeTrendingLinkHandlerFactory extends ListLinkHandlerFac
2121
KIOSK_TRENDING, "%s/api/v1/videos?sort=-trending",
2222
KIOSK_MOST_LIKED, "%s/api/v1/videos?sort=-likes",
2323
KIOSK_RECENT, "%s/api/v1/videos?sort=-publishedAt",
24-
KIOSK_LOCAL, "%s/api/v1/videos?sort=-publishedAt&filter=local");
24+
KIOSK_LOCAL, "%s/api/v1/videos?sort=-publishedAt&isLocal=true");
2525

2626
private PeertubeTrendingLinkHandlerFactory() {
2727
}

0 commit comments

Comments
 (0)