diff --git a/app/soapbox/reducers/relationships.ts b/app/soapbox/reducers/relationships.ts index 40bcbdfaa..2eb035ec4 100644 --- a/app/soapbox/reducers/relationships.ts +++ b/app/soapbox/reducers/relationships.ts @@ -57,7 +57,7 @@ const setDomainBlocking = (state: State, accounts: ImmutableList, blocki const importPleromaAccount = (state: State, account: APIEntity) => { const relationship = get(account, ['pleroma', 'relationship'], {}); - if (relationship.id && relationship !== {}) + if (relationship.id) return normalizeRelationships(state, [relationship]); return state; };