diff --git a/app/soapbox/utils/features.js b/app/soapbox/utils/features.js index 0cb0b93e7..6447f53f7 100644 --- a/app/soapbox/utils/features.js +++ b/app/soapbox/utils/features.js @@ -70,7 +70,10 @@ export const getFeatures = createSelector([ v.software === MASTODON && gte(v.compatVersion, '3.0.0'), features.includes('profile_directory'), ]), - accountLookup: v.software === MASTODON && gte(v.version, '3.4.0'), + accountLookup: any([ + v.software === MASTODON && gte(v.compatVersion, '3.4.0'), + v.software === PLEROMA && gte(v.version, '2.4.50'), + ]), }; });