-
+
{children}
@@ -635,7 +645,7 @@ class UI extends React.PureComponent {
{me && }
- {me && !mobile && (
+ {me && features.chats && !mobile && (
{Component => }
diff --git a/app/soapbox/utils/features.js b/app/soapbox/utils/features.js
index f89652219..9b520c78c 100644
--- a/app/soapbox/utils/features.js
+++ b/app/soapbox/utils/features.js
@@ -16,6 +16,7 @@ export const getFeatures = createSelector([
focalPoint: v.software === 'Mastodon' && gte(v.compatVersion, '2.3.0'),
importMutes: v.software === 'Pleroma' && gte(v.version, '2.2.0'),
emailList: f.includes('email_list'),
+ chats: v.software === 'Pleroma' && gte(v.version, '2.1.0'),
};
});