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

pull/47106/head
John Molakvoæ 2024-08-07 16:10:18 +07:00 committed by GitHub
commit 07d302d007
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 1 deletions

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