diff --git a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/invidious/extractors/InvidiousFeedExtractor.java b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/invidious/extractors/InvidiousFeedExtractor.java index 8cd7ef6c96..e5fa39b0d1 100644 --- a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/invidious/extractors/InvidiousFeedExtractor.java +++ b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/invidious/extractors/InvidiousFeedExtractor.java @@ -1,5 +1,6 @@ package org.schabi.newpipe.extractor.services.youtube.invidious.extractors; +import static org.schabi.newpipe.extractor.services.youtube.invidious.InvidiousParsingHelper.getUid; import static org.schabi.newpipe.extractor.services.youtube.invidious.InvidiousParsingHelper.getValidResponseBody; import org.jsoup.Jsoup; @@ -61,7 +62,7 @@ public InfoItemsPage getPage( public void onFetchPage( @Nonnull final Downloader downloader ) throws IOException, ExtractionException { - final String feedUrl = baseUrl + "/feed/channel/" + getLinkHandler().getId(); + final String feedUrl = baseUrl + "/feed/channel/" + getUid(getLinkHandler().getId()); final Response response = downloader.get(feedUrl); document = Jsoup.parse(getValidResponseBody(response, feedUrl)); }