From 969adc530f101a83545d412be49b6e4a6f6e2c7f Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Thu, 15 Mar 2018 23:41:13 +0100 Subject: [PATCH] Fixed patch --- patches/add-user-notify-email/add-user-notify-email.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/add-user-notify-email/add-user-notify-email.go b/patches/add-user-notify-email/add-user-notify-email.go index 921eacc5..5ef0e719 100644 --- a/patches/add-user-notify-email/add-user-notify-email.go +++ b/patches/add-user-notify-email/add-user-notify-email.go @@ -7,7 +7,7 @@ func main() { for user := range arn.StreamUsers() { settings := user.Settings() - settings.NotificationEmail = user.Email + settings.Notification.Email = user.Email settings.Save() } }