Filter out video tab from tabs.

This commit is contained in:
Kavin 2023-05-22 21:09:57 +01:00
parent 234adf1255
commit fc7d3dd2a5
No known key found for this signature in database
GPG Key ID: 49451E4482CC5BCD
1 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,7 @@ import org.schabi.newpipe.extractor.channel.ChannelInfo;
import org.schabi.newpipe.extractor.channel.ChannelTabInfo;
import org.schabi.newpipe.extractor.exceptions.ExtractionException;
import org.schabi.newpipe.extractor.exceptions.ParsingException;
import org.schabi.newpipe.extractor.linkhandler.ChannelTabs;
import org.schabi.newpipe.extractor.linkhandler.ListLinkHandler;
import org.schabi.newpipe.extractor.stream.StreamInfoItem;
@ -138,6 +139,7 @@ public class ChannelHandlers {
List<ChannelTab> tabs = info.getTabs()
.stream()
.filter(tab -> !tab.getContentFilters().contains(ChannelTabs.VIDEOS))
.map(tab -> {
try {
return new ChannelTab(tab.getContentFilters().get(0), mapper.writeValueAsString(tab));