Skip to content

Commit b5722af

Browse files
authored
Add regex to match Gnome and KDE calendar user-agents
1 parent ccbeb0f commit b5722af

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

apps/dav/lib/CalDAV/WebcalCaching/Plugin.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,14 @@ class Plugin extends ServerPlugin {
4141
* that do not support subscriptions on their own
4242
*
4343
* /^MSFT-WIN-3/ - Windows 10 Calendar
44+
* /Evolution/ - Gnome Calendar/Evolution
45+
* /KIO/ - KDE PIM/Akonadi
4446
* @var string[]
4547
*/
4648
public const ENABLE_FOR_CLIENTS = [
47-
"/^MSFT-WIN-3/"
49+
"/^MSFT-WIN-3/",
50+
"/Evolution/",
51+
"/KIO/"
4852
];
4953

5054
/**

0 commit comments

Comments
 (0)