diff options
author | Starfall <us@starfall.systems> | 2020-07-03 20:45:56 -0500 |
---|---|---|
committer | Starfall <us@starfall.systems> | 2020-07-03 20:45:56 -0500 |
commit | cfd52a032aa4ee545d479b65a295e6a9e77c4f4f (patch) | |
tree | d1fead288932a787dce26e117671e42a03e7fd33 /app/javascript/flavours/glitch/features/account_timeline | |
parent | 1f7cbd441074c839fa9e9509e28e13c99c9af300 (diff) | |
parent | 9b3677d5097fb50f90a6abdce9d722e81d2db469 (diff) |
Merge branch 'glitch' into main
Diffstat (limited to 'app/javascript/flavours/glitch/features/account_timeline')
-rw-r--r-- | app/javascript/flavours/glitch/features/account_timeline/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/account_timeline/index.js b/app/javascript/flavours/glitch/features/account_timeline/index.js index a8e8aa7a8..5558ba2a3 100644 --- a/app/javascript/flavours/glitch/features/account_timeline/index.js +++ b/app/javascript/flavours/glitch/features/account_timeline/index.js @@ -21,7 +21,7 @@ const mapStateToProps = (state, { params: { accountId }, withReplies = false }) const path = withReplies ? `${accountId}:with_replies` : accountId; return { - remote: !!state.getIn(['accounts', accountId, 'acct']) !== state.getIn(['accounts', accountId, 'username']), + remote: !!(state.getIn(['accounts', accountId, 'acct']) !== state.getIn(['accounts', accountId, 'username'])), remoteUrl: state.getIn(['accounts', accountId, 'url']), isAccount: !!state.getIn(['accounts', accountId]), statusIds: state.getIn(['timelines', `account:${path}`, 'items'], ImmutableList()), |