Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/renderer/helpers/api/local.js
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ export async function getLocalChannelCommunity(id) {

// if the channel doesn't have a community tab, YouTube returns the home tab instead
// so we need to check that we got the right tab
if (communityTab.current_tab?.endpoint.metadata.url?.endsWith('/community')) {
if (communityTab.current_tab?.endpoint.metadata.url?.endsWith('/posts')) {
return parseLocalCommunityPosts(communityTab.posts)
} else {
return []
Expand Down