From 90faa71cfe32846fdeaaff88edf524998f6c0d11 Mon Sep 17 00:00:00 2001 From: Thibaut Patel Date: Wed, 2 Feb 2022 13:08:11 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fixed=20typo=20in=20`getEventTim?= =?UTF-8?q?eline`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit refs https://github.com/TryGhost/Members/commit/13a9962ade3c7e7d82d7ee3c9de5c3a2cf2feb15 - The typo was half-fixed in the commit https://github.com/TryGhost/Members/commit/13a9962ade3c7e7d82d7ee3c9de5c3a2cf2feb15 - This fixes the call, restoring the feature --- ghost/members-api/lib/repositories/event.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/members-api/lib/repositories/event.js b/ghost/members-api/lib/repositories/event.js index b1f8f874ca..11a90e5228 100644 --- a/ghost/members-api/lib/repositories/event.js +++ b/ghost/members-api/lib/repositories/event.js @@ -358,7 +358,7 @@ module.exports = class EventRepository { {type: 'signup_event', action: 'getSignupEvents'} ]; if (this._labsService.isSet('membersActivityFeed') && this._EmailRecipient) { - pageActions.push({type: 'email_delivered_event', action: 'getEmailDelieveredEvents'}); + pageActions.push({type: 'email_delivered_event', action: 'getEmailDeliveredEvents'}); pageActions.push({type: 'email_opened_event', action: 'getEmailOpenedEvents'}); pageActions.push({type: 'email_failed_event', action: 'getEmailFailedEvents'}); }