From 0a984d31f7302f6f4994df969ab487ca170c2d7e Mon Sep 17 00:00:00 2001 From: yflory Date: Thu, 15 Apr 2021 18:09:11 +0200 Subject: [PATCH] Convert email notifications --- www/calendar/export.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/www/calendar/export.js b/www/calendar/export.js index e470c5d33..6019290c6 100644 --- a/www/calendar/export.js +++ b/www/calendar/export.js @@ -162,9 +162,8 @@ define([ ev.getAllSubcomponents('valarm').forEach(function (al) { var action = al.getFirstPropertyValue('action'); if (action !== 'DISPLAY') { - // XXX email: maybe keep a notification in CryptPad? + // Email notification: keep it in "hidden" and create a cryptpad notification hidden.push(al.toString()); - return; } var trigger = al.getFirstPropertyValue('trigger'); var minutes = -trigger.toSeconds() / 60;