pendingStatus: safer `to` fallback
This commit is contained in:
parent
d16b764de7
commit
b4a2514cd9
|
@ -16,7 +16,7 @@ export const buildStatus = (state, pendingStatus, idempotencyKey) => {
|
||||||
const inReplyTo = getStatus(state, { id: pendingStatus.get('in_reply_to_id') });
|
const inReplyTo = getStatus(state, { id: pendingStatus.get('in_reply_to_id') });
|
||||||
|
|
||||||
if (inReplyTo.getIn(['account', 'id']) === me) {
|
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 {
|
} else {
|
||||||
mentions = pendingStatus.get('to', []);
|
mentions = pendingStatus.get('to', []);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue