fix(Channel): Use new URL for community tab (#986)

This commit is contained in:
ChunkyProgrammer
2025-07-18 13:23:59 +00:00
committed by GitHub
parent bc386db6ba
commit dfaf1501c9

View File

@@ -194,7 +194,7 @@ export default class Channel extends TabbedFeed<IBrowseResponse> {
}
async getCommunity(): Promise<Channel> {
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<IBrowseResponse> {
}
get has_community(): boolean {
return this.hasTabWithURL('community');
return this.hasTabWithURL('posts');
}
get has_about(): boolean {