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>
lolsob-rspec
Plastikmensch 2023-07-27 19:25:55 +02:00 committed by GitHub
parent df7c9e1ed4
commit 7b2cfdeda3
1 changed files with 1 additions and 1 deletions

View File

@ -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 }));
}