feat(dav): add regex to match Gnome and KDE calendar user-agents

Signed-off-by: Vivida <57828684+Vivida1@users.noreply.github.com>
This commit is contained in:
Vivida 2024-06-13 00:02:15 +02:00 committed by Anna
parent 07180e425f
commit 58cf14da87

View file

@ -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/"
];
/**