kopia lustrzana https://gitlab.com/soapbox-pub/soapbox
Fix pointless relationships conditional
rodzic
8763bdfa9f
commit
3dd4efdc14
|
@ -57,7 +57,7 @@ const setDomainBlocking = (state: State, accounts: ImmutableList<string>, blocki
|
||||||
|
|
||||||
const importPleromaAccount = (state: State, account: APIEntity) => {
|
const importPleromaAccount = (state: State, account: APIEntity) => {
|
||||||
const relationship = get(account, ['pleroma', 'relationship'], {});
|
const relationship = get(account, ['pleroma', 'relationship'], {});
|
||||||
if (relationship.id && relationship !== {})
|
if (relationship.id)
|
||||||
return normalizeRelationships(state, [relationship]);
|
return normalizeRelationships(state, [relationship]);
|
||||||
return state;
|
return state;
|
||||||
};
|
};
|
||||||
|
|
Ładowanie…
Reference in New Issue