From dfaf1501c93e29bd27a5553df0ee5b46d490ac12 Mon Sep 17 00:00:00 2001 From: ChunkyProgrammer <78101139+ChunkyProgrammer@users.noreply.github.com> Date: Fri, 18 Jul 2025 13:23:59 +0000 Subject: [PATCH] fix(Channel): Use new URL for community tab (#986) --- src/parser/youtube/Channel.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/parser/youtube/Channel.ts b/src/parser/youtube/Channel.ts index 43317433..600086a4 100644 --- a/src/parser/youtube/Channel.ts +++ b/src/parser/youtube/Channel.ts @@ -194,7 +194,7 @@ export default class Channel extends TabbedFeed { } async getCommunity(): Promise { - const tab = await this.getTabByURL('community'); + const tab = await this.getTabByURL('posts'); return new Channel(this.actions, tab.page, true); } @@ -283,7 +283,7 @@ export default class Channel extends TabbedFeed { } get has_community(): boolean { - return this.hasTabWithURL('community'); + return this.hasTabWithURL('posts'); } get has_about(): boolean {