diff --git a/app/soapbox/reducers/__tests__/status-lists.test.ts b/app/soapbox/reducers/__tests__/status-lists.test.ts index b01daee09..e362b849e 100644 --- a/app/soapbox/reducers/__tests__/status-lists.test.ts +++ b/app/soapbox/reducers/__tests__/status-lists.test.ts @@ -27,6 +27,18 @@ describe('status_lists reducer', () => { isLoading: null, items: [], }, + joined_events: { + next: null, + loaded: false, + isLoading: null, + items: [], + }, + recent_events: { + next: null, + loaded: false, + isLoading: null, + items: [], + }, }); }); }); diff --git a/app/soapbox/utils/features.ts b/app/soapbox/utils/features.ts index 0bfc07398..efbbbda37 100644 --- a/app/soapbox/utils/features.ts +++ b/app/soapbox/utils/features.ts @@ -280,7 +280,7 @@ const getInstanceFeatures = (instance: Instance) => { */ ethereumLogin: v.software === MITRA, - events: v.software === PLEROMA && v.build === SOAPBOX && gte(v.version, '2.4.50'), + events: v.software === PLEROMA && v.build === REBASED && gte(v.version, '2.4.50'), /** * Ability to address recipients of a status explicitly (with `to`).