Skip to content

Commit

Permalink
Add regex to match Gnome and KDE calendar user-agents
Browse files Browse the repository at this point in the history
  • Loading branch information
msrn authored Aug 28, 2022
1 parent ccbeb0f commit b5722af
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/dav/lib/CalDAV/WebcalCaching/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -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/"
];

/**
Expand Down

0 comments on commit b5722af

Please sign in to comment.