From 342000f8f22575708db340ad90d21a2a76f1e7fa Mon Sep 17 00:00:00 2001 From: Jan Olbrecht <43749346+olbjan@users.noreply.github.com> Date: Mon, 25 Feb 2019 12:27:57 +0100 Subject: [PATCH] Corrected example automation (#8726) The trigger in the example automation contained the line 'data:' below the event_data, which is redundant. If used this way the automation triggers on any iOS action and ignores the actionName. --- source/_docs/ecosystem/ios/notifications/actions.markdown | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/_docs/ecosystem/ios/notifications/actions.markdown b/source/_docs/ecosystem/ios/notifications/actions.markdown index 532d68434e4..9f1493b3d72 100644 --- a/source/_docs/ecosystem/ios/notifications/actions.markdown +++ b/source/_docs/ecosystem/ios/notifications/actions.markdown @@ -132,8 +132,7 @@ automation: platform: event event_type: ios.notification_action_fired event_data: - data: - actionName: SOUND_ALARM + actionName: SOUND_ALARM action: ... ```