-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add regex to match Windows 10 calendar user-agent #27488
Conversation
Plugin::ENABLE_FOR_CLIENTS See the test failure https://drone.nextcloud.com/nextcloud/server/6224/9/4 |
@msrn Please run |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 🐘
Do I need to squash this to a single commit? |
It's usually preferred, yes :) |
* Match first part of the Windows 10 calendar user-agent * Exposes subscribed calendars for Windows 10 calendar * Update unit test Signed-off-by: Mikael Saarinen <mikaels@iki.fi>
Squashed, and rebased to master aswell |
Thanks for your first pull request and welcome to the community! Feel free to keep them coming! If you are looking for issues to tackle then have a look at this selection: https://github.com/nextcloud/server/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22 |
This pull requests adds Windows 10 calendar to the list of user-agents in WebCalCaching -plugin, and exposes subscribed calendars to Windows 10 calendar client.
Typical user-agent string for Windows 10 Calendar is:
MSFT-WIN-3/10.0.19041
Included regex matches, the
MSFT-WIN-3
part only.Considers #17754
@tcitworld