~cytrogen/masto-fe

e69fe94669295245503ed56f3912a5caf4bdbc2f — Plastikmensch 2 years ago 8864d5b
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>
1 files changed, 1 insertions(+), 1 deletions(-)

M app/javascript/flavours/glitch/features/firehose/index.jsx
M app/javascript/flavours/glitch/features/firehose/index.jsx => app/javascript/flavours/glitch/features/firehose/index.jsx +1 -1
@@ 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 }));
      }