Skip to content

Commit 0859d83

Browse files
committed
fix: Increase limit for share/unshare requests per hour
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
1 parent fcb956b commit 0859d83

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/dav/lib/DAV/Security/RateLimiting.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function check(): void {
3434
}
3535

3636
$identifier = 'share-addressbook-or-calendar';
37-
$userLimit = $this->config->getValueInt('dav', 'rateLimitShareAddressbookOrCalendar', 20);
37+
$userLimit = $this->config->getValueInt('dav', 'rateLimitShareAddressbookOrCalendar', 200);
3838
$userPeriod = $this->config->getValueInt('dav', 'rateLimitPeriodShareAddressbookOrCalendar', 3600);
3939

4040
try {

0 commit comments

Comments
 (0)