From bf3fbbc36342176e137ce844d96c97fbe3764111 Mon Sep 17 00:00:00 2001 From: Jason Blais <13119842+jasonblais@users.noreply.github.com> Date: Sun, 19 Apr 2020 21:37:11 -0400 Subject: [PATCH] Fix typo in telemetry entry (#4134) See contribution that fixes this in the Redux repo: https://github.com/mattermost/mattermost-redux/pull/1116 --- app/mm-redux/client/client4.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/mm-redux/client/client4.ts b/app/mm-redux/client/client4.ts index 87bec7d61..72550d020 100644 --- a/app/mm-redux/client/client4.ts +++ b/app/mm-redux/client/client4.ts @@ -1393,7 +1393,7 @@ export default class Client4 { }; updateChannelNotifyProps = async (props: any) => { - this.trackEvent('api', 'api_users_update_channel_notifcations', {channel_id: props.channel_id}); + this.trackEvent('api', 'api_users_update_channel_notifications', {channel_id: props.channel_id}); return this.doFetch( `${this.getChannelMemberRoute(props.channel_id, props.user_id)}/notify_props`,