From b5722af757100be8867de68642b2d5fbd2b88c2e Mon Sep 17 00:00:00 2001 From: Mikael Date: Mon, 29 Aug 2022 00:12:32 +0300 Subject: [PATCH] Add regex to match Gnome and KDE calendar user-agents --- apps/dav/lib/CalDAV/WebcalCaching/Plugin.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/dav/lib/CalDAV/WebcalCaching/Plugin.php b/apps/dav/lib/CalDAV/WebcalCaching/Plugin.php index 3dd8a7c81e5a4..fed118323d521 100644 --- a/apps/dav/lib/CalDAV/WebcalCaching/Plugin.php +++ b/apps/dav/lib/CalDAV/WebcalCaching/Plugin.php @@ -41,10 +41,14 @@ class Plugin extends ServerPlugin { * that do not support subscriptions on their own * * /^MSFT-WIN-3/ - Windows 10 Calendar + * /Evolution/ - Gnome Calendar/Evolution + * /KIO/ - KDE PIM/Akonadi * @var string[] */ public const ENABLE_FOR_CLIENTS = [ - "/^MSFT-WIN-3/" + "/^MSFT-WIN-3/", + "/Evolution/", + "/KIO/" ]; /**