Fix "All" live feed not loading automatically. (#2332)

The dispatch to expand the timeline was missing the `allowLocalOnly` param.

Signed-off-by: Plastikmensch <plastikmensch@users.noreply.github.com>
local
Plastikmensch 10 months ago committed by GitHub
parent 8864d5b580
commit e69fe94669
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      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 }));
}

Loading…
Cancel
Save