Extended maximum lifetime of a videoconference session - refs #6261

1.9.x
Laura Guirao 11 years ago committed by Yannick Warnier
parent 4c3613ef7c
commit 58ac9f47c2
  1. 4
      plugin/bbb/lib/bbb.lib.php

@ -118,7 +118,9 @@ class bbb {
$welcome_msg = isset($params['welcome_msg']) ? $params['welcome_msg'] : null;
$record = isset($params['record']) && $params['record'] ? 'true' : 'false';
$duration = isset($params['duration']) ? intval($params['duration']) : 0;
$duration = 30;
// This setting currently limits the maximum conference duration,
// to avoid llingering sessions on the videoconference server #6261
$duration = 300;
$bbb_params = array(
'meetingId' => $id, // REQUIRED

Loading…
Cancel
Save