Browse Source

Merge pull request #44938 from nextcloud/fix/remove-unknown-from-imip-service

fix(CalDAV): remove UNKNOWN from room / resource consideration
Anna 1 week ago
parent
commit
10af08736e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      apps/dav/lib/CalDAV/Schedule/IMipService.php

+ 1 - 1
apps/dav/lib/CalDAV/Schedule/IMipService.php

@@ -682,7 +682,7 @@ class IMipService {
 			return false;
 		}
 		$type = $cuType->getValue() ?? 'INDIVIDUAL';
-		if (\in_array(strtoupper($type), ['RESOURCE', 'ROOM', 'UNKNOWN'], true)) {
+		if (\in_array(strtoupper($type), ['RESOURCE', 'ROOM'], true)) {
 			// Don't send emails to things
 			return true;
 		}