mirror of
https://github.com/nextcloud/server.git
synced 2026-03-29 22:03:27 -04:00
fix(caldav): limit property length
Signed-off-by: Anna Larch <anna@nextcloud.com>
This commit is contained in:
parent
ebe2429c0a
commit
3ff7d64fda
1 changed files with 1 additions and 1 deletions
|
|
@ -3214,7 +3214,7 @@ class CalDavBackend extends AbstractBackend implements SyncSupport, Subscription
|
|||
|
||||
$query->setParameter('name', $property->name);
|
||||
$query->setParameter('parameter', null);
|
||||
$query->setParameter('value', $value);
|
||||
$query->setParameter('value', mb_strcut($value, 0, 254));
|
||||
$query->executeStatement();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue