Skip to content

Commit f723827

Browse files
fixup! fix: calendar subscription memory exhaustion
Signed-off-by: SebastianKrupinski <[email protected]>
1 parent b9dbec1 commit f723827

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/dav/lib/CalDAV/WebcalCaching/RefreshWebcalService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public function refreshSubscription(string $principalUri, string $uri) {
7070
}
7171

7272
// Some calendar providers (e.g. Google, MS) use very long UIDs
73-
if (strlen($vBase->UID->getValue()) > 255) {
73+
if (strlen($vBase->UID->getValue()) > 512) {
7474
continue;
7575
}
7676

0 commit comments

Comments
 (0)