From e69fe94669295245503ed56f3912a5caf4bdbc2f Mon Sep 17 00:00:00 2001 From: Plastikmensch Date: Thu, 27 Jul 2023 19:25:55 +0200 Subject: [PATCH] Fix "All" live feed not loading automatically. (#2332) The dispatch to expand the timeline was missing the `allowLocalOnly` param. Signed-off-by: Plastikmensch --- app/javascript/flavours/glitch/features/firehose/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/flavours/glitch/features/firehose/index.jsx b/app/javascript/flavours/glitch/features/firehose/index.jsx index d28fb30ea..3c04ac630 100644 --- a/app/javascript/flavours/glitch/features/firehose/index.jsx +++ b/app/javascript/flavours/glitch/features/firehose/index.jsx @@ -129,7 +129,7 @@ const Firehose = ({ feedType, multiColumn }) => { } break; case 'public': - dispatch(expandPublicTimeline({ onlyMedia })); + dispatch(expandPublicTimeline({ onlyMedia, allowLocalOnly })); if (signedIn) { disconnect = dispatch(connectPublicStream({ onlyMedia, allowLocalOnly })); }