Merge pull request #45841 from Vivida1/add-regex-to-match-Gnome-and-KDE-calendar-user-agents

This commit is contained in:
John Molakvoæ 2024-08-07 16:10:18 +02:00 committed by GitHub
commit 07d302d007
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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