Merge pull request #3321 from nextcloud/backport/3314/stable2.3

[stable2.3] Fix calendar sharing search
This commit is contained in:
Christoph Wurst 2021-07-12 10:07:35 +02:00 committed by GitHub
commit ac7ee9ab80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -145,6 +145,10 @@ export default {
}
return results.reduce((list, result) => {
if (['ROOM', 'RESOURCE'].includes(result.calendarUserType)) {
return list
}
const isGroup = result.calendarUserType === 'GROUP'
// TODO: Why do we have to decode those two values?