pendingStatus: safer `to` fallback

merge-requests/1046/head
Alex Gleason 3 years ago
parent d16b764de7
commit b4a2514cd9
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

@ -16,7 +16,7 @@ export const buildStatus = (state, pendingStatus, idempotencyKey) => {
const inReplyTo = getStatus(state, { id: pendingStatus.get('in_reply_to_id') });
if (inReplyTo.getIn(['account', 'id']) === me) {
mentions = ImmutableOrderedSet([account.get('acct')]).union(pendingStatus.get('to', []));
mentions = ImmutableOrderedSet([account.get('acct')]).union(pendingStatus.get('to') || []);
} else {
mentions = pendingStatus.get('to', []);
}

Loading…
Cancel
Save