diff --git a/app/soapbox/normalizers/account.ts b/app/soapbox/normalizers/account.ts index 7faa3282c..98f895aa8 100644 --- a/app/soapbox/normalizers/account.ts +++ b/app/soapbox/normalizers/account.ts @@ -132,11 +132,12 @@ const normalizeVerified = (account: ImmutableMap) => { }); }; -// Normalize Fedibird/Truth Social location +// Normalize Fedibird/Truth Social/Pleroma location const normalizeLocation = (account: ImmutableMap) => { return account.update('location', location => { return [ location, + account.getIn(['pleroma', 'location']), account.getIn(['other_settings', 'location']), ].find(Boolean); });