Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2020-12-04 03:33:25 +0300
committerJoas Schilling <coding@schilljs.com>2020-12-08 15:00:13 +0300
commit4667b1a0f2c37084ca05763977d889c4ca762cc1 (patch)
treef5750d1822f4d11ab3798a60659fde95eadff48e /lib/Room.php
parent72168dd663f25d9788fb5e7f64d62577cd4155e2 (diff)
Increase maximum description length to 500 characters
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'lib/Room.php')
-rw-r--r--lib/Room.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Room.php b/lib/Room.php
index 830e12198..8f9ed2278 100644
--- a/lib/Room.php
+++ b/lib/Room.php
@@ -109,7 +109,7 @@ class Room {
public const EVENT_AFTER_SESSION_LEAVE_CALL = self::class . '::postSessionLeaveCall';
public const EVENT_BEFORE_SIGNALING_PROPERTIES = self::class . '::beforeSignalingProperties';
- public const DESCRIPTION_MAXIMUM_LENGTH = 250;
+ public const DESCRIPTION_MAXIMUM_LENGTH = 500;
/** @var Manager */
private $manager;