diff options
author | hamza221 <hamzamahjoubi221@gmail.com> | 2023-08-29 16:16:57 +0200 |
---|---|---|
committer | hamza221 <hamzamahjoubi221@gmail.com> | 2023-09-12 13:58:40 +0200 |
commit | 823908b0172b8fbe34761ceba6bc9ca16d9c600e (patch) | |
tree | 17151fd4b87c7dfed975d6fb3220dd517685c673 /apps/dav/lib/CalDAV/Reminder/NotificationProvider/PushProvider.php | |
parent | e8a69ac565259ac173f605bfdac4da22cbb26ae8 (diff) | |
download | nextcloud-server-823908b0172b8fbe34761ceba6bc9ca16d9c600e.tar.gz nextcloud-server-823908b0172b8fbe34761ceba6bc9ca16d9c600e.zip |
Enable caldav push notifications by default
Signed-off-by: hamza221 <hamzamahjoubi221@gmail.com>
Diffstat (limited to 'apps/dav/lib/CalDAV/Reminder/NotificationProvider/PushProvider.php')
-rw-r--r-- | apps/dav/lib/CalDAV/Reminder/NotificationProvider/PushProvider.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/CalDAV/Reminder/NotificationProvider/PushProvider.php b/apps/dav/lib/CalDAV/Reminder/NotificationProvider/PushProvider.php index be8bafd2f35..ab7f12c570a 100644 --- a/apps/dav/lib/CalDAV/Reminder/NotificationProvider/PushProvider.php +++ b/apps/dav/lib/CalDAV/Reminder/NotificationProvider/PushProvider.php @@ -82,7 +82,7 @@ class PushProvider extends AbstractProvider { ?string $calendarDisplayName, array $principalEmailAddresses, array $users = []):void { - if ($this->config->getAppValue('dav', 'sendEventRemindersPush', 'no') !== 'yes') { + if ($this->config->getAppValue('dav', 'sendEventRemindersPush', 'yes') !== 'yes') { return; } |