From e148429ea2e2c58c5b79a7cf2061d7c51ed5051e Mon Sep 17 00:00:00 2001 From: Marcus Date: Sat, 14 Sep 2024 12:17:03 -0700 Subject: [PATCH] Update timeline_id.js --- src/utils/timeline_id.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils/timeline_id.js b/src/utils/timeline_id.js index c59aa4566..4cd96d9ef 100644 --- a/src/utils/timeline_id.js +++ b/src/utils/timeline_id.js @@ -53,7 +53,8 @@ export const tagTimelineFilter = tag => timelineId?.match(exactly(`tag-${uuidV4}-${tag}-recent`)); export const anyCommunityTimelineFilter = ({ dataset: { timeline, timelineId } }) => - timelineId?.match(exactly(`communities-${anyBlog}-recent`)); + timelineId?.match(exactly(`communities-${anyBlog}-recent`)) || + timelineId?.match(exactly(`community-${uuidV4}-${anyBlog}`)); export const communitiesTimelineFilter = ({ dataset: { timeline, timelineId } }) => timelineId === 'communities-for_you';