aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/lib
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2024-08-07 16:10:18 +0200
committerGitHub <noreply@github.com>2024-08-07 16:10:18 +0200
commit07d302d0076ea781fee421b0837ee4cda40b0c93 (patch)
tree1a611f3b38032e57eac20c32f2adb30fceb948ab /apps/dav/lib
parent4c4e414036e75fc1fe248721d05041d8c7d93eb6 (diff)
parent3e06931408ad4f03dbdb70d34f4ff6b6edaecc8e (diff)
downloadnextcloud-server-07d302d0076ea781fee421b0837ee4cda40b0c93.tar.gz
nextcloud-server-07d302d0076ea781fee421b0837ee4cda40b0c93.zip
Merge pull request #45841 from Vivida1/add-regex-to-match-Gnome-and-KDE-calendar-user-agents
Diffstat (limited to 'apps/dav/lib')
-rw-r--r--apps/dav/lib/CalDAV/WebcalCaching/Plugin.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/dav/lib/CalDAV/WebcalCaching/Plugin.php b/apps/dav/lib/CalDAV/WebcalCaching/Plugin.php
index e93c536c846..ea1bf7d4f0f 100644
--- a/apps/dav/lib/CalDAV/WebcalCaching/Plugin.php
+++ b/apps/dav/lib/CalDAV/WebcalCaching/Plugin.php
@@ -23,10 +23,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/"
];
/**