diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-11-27 20:48:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-27 20:48:12 +0100 |
commit | 3ffaa966b0ba11b318e9a93b41854aa765d2ed5c (patch) | |
tree | ae7ff603d5d36b5c78edf49491bf98f91ad82ecd /app | |
parent | 57b893d505a6fd0a11b9e53261bc029adee2aa24 (diff) |
Fix infinite loading instead of soft 404 for non-existing remote accounts (#21303)
Fixes #21278, #21021
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/mastodon/features/account_timeline/index.js | 8 | ||||
-rw-r--r-- | app/javascript/mastodon/reducers/accounts_map.js | 3 |
2 files changed, 10 insertions, 1 deletions
diff --git a/app/javascript/mastodon/features/account_timeline/index.js b/app/javascript/mastodon/features/account_timeline/index.js index 525837c72..bdb430a33 100644 --- a/app/javascript/mastodon/features/account_timeline/index.js +++ b/app/javascript/mastodon/features/account_timeline/index.js @@ -26,7 +26,13 @@ const emptyList = ImmutableList(); const mapStateToProps = (state, { params: { acct, id, tagged }, withReplies = false }) => { const accountId = id || state.getIn(['accounts_map', normalizeForLookup(acct)]); - if (!accountId) { + if (accountId === null) { + return { + isLoading: false, + isAccount: false, + statusIds: emptyList, + }; + } else if (!accountId) { return { isLoading: true, statusIds: emptyList, diff --git a/app/javascript/mastodon/reducers/accounts_map.js b/app/javascript/mastodon/reducers/accounts_map.js index 53e08c8fb..444bbda19 100644 --- a/app/javascript/mastodon/reducers/accounts_map.js +++ b/app/javascript/mastodon/reducers/accounts_map.js @@ -1,4 +1,5 @@ import { ACCOUNT_IMPORT, ACCOUNTS_IMPORT } from '../actions/importer'; +import { ACCOUNT_LOOKUP_FAIL } from '../actions/accounts'; import { Map as ImmutableMap } from 'immutable'; export const normalizeForLookup = str => str.toLowerCase(); @@ -7,6 +8,8 @@ const initialState = ImmutableMap(); export default function accountsMap(state = initialState, action) { switch(action.type) { + case ACCOUNT_LOOKUP_FAIL: + return action.error?.response?.status === 404 ? state.set(normalizeForLookup(action.acct), null) : state; case ACCOUNT_IMPORT: return state.set(normalizeForLookup(action.account.acct), action.account.id); case ACCOUNTS_IMPORT: |