From 6268188543ff685e943d65e3d1f335d9d3260658 Mon Sep 17 00:00:00 2001 From: mogaminsk Date: Tue, 4 Jul 2023 07:37:57 +0900 Subject: [PATCH] Fix local live feeds does not expand (#25694) --- app/javascript/mastodon/features/firehose/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/mastodon/features/firehose/index.jsx b/app/javascript/mastodon/features/firehose/index.jsx index 4602213a610af6e277bf89e4ba23902b6631fbcf..9ba4fd5b2be58999781bb18318bda3e81c556b44 100644 --- a/app/javascript/mastodon/features/firehose/index.jsx +++ b/app/javascript/mastodon/features/firehose/index.jsx @@ -84,7 +84,7 @@ const Firehose = ({ feedType, multiColumn }) => { (maxId) => { switch(feedType) { case 'community': - dispatch(expandCommunityTimeline({ onlyMedia })); + dispatch(expandCommunityTimeline({ maxId, onlyMedia })); break; case 'public': dispatch(expandPublicTimeline({ maxId, onlyMedia }));