mirror of
https://github.com/mastodon/mastodon.git
synced 2026-08-11 09:05:45 -05:00
Fix typo in quotes list error handling (#39904)
This commit is contained in:
@@ -159,7 +159,7 @@ export default function statusLists(state = initialState, action) {
|
||||
else if (fetchQuotes.pending.match(action))
|
||||
return state.setIn(['quotes', 'isLoading'], true).setIn(['quotes', 'statusId'], action.meta.arg.statusId);
|
||||
else if (fetchQuotes.rejected.match(action))
|
||||
return state.setIn(['quotes', 'isLoading', false]).setIn(['quotes', 'statusId'], action.meta.arg.statusId);
|
||||
return state.setIn(['quotes', 'isLoading'], false).setIn(['quotes', 'statusId'], action.meta.arg.statusId);
|
||||
else
|
||||
return state;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user