From bf05abd53d7ba77d369fa7a06ebeec2ccf703cd5 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Tue, 31 May 2022 18:40:44 -0500 Subject: [PATCH] Disable birthdays --- app/soapbox/utils/features.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/soapbox/utils/features.ts b/app/soapbox/utils/features.ts index e98b7262c8..0a466fecd3 100644 --- a/app/soapbox/utils/features.ts +++ b/app/soapbox/utils/features.ts @@ -147,7 +147,9 @@ const getInstanceFeatures = (instance: Instance) => { * @see POST /api/v1/accounts * @see PATCH /api/v1/accounts/update_credentials */ - birthdays: v.software === PLEROMA && gte(v.version, '2.4.50'), + // birthdays: v.software === PLEROMA && gte(v.version, '2.4.50'), + // FIXME: temporarily disabled until they can be deleted on the backend. + birthdays: false, /** Whether people who blocked you are visible through the API. */ blockersVisible: features.includes('blockers_visible'),