-
New Feature
-
Resolution: Fixed
-
Minor
-
None
-
1.9.4
-
None
-
Any
-
MOODLE_19_STABLE
Currently recordings are only added to a meeting instance ( by cron) when the meeting has finished, We have meetings that last the length of the course.
So I have changed the sql query to remove the time clause.
Not sure if this should be a meeting setting or whether it doesn't matter.
ie:
changing lib.php:462
$sql = "SELECT es.id, es.meetingid
FROM {$CFG->prefix}elluminatelive el
INNER JOIN {$CFG->prefix}elluminatelive_session es ON es.elluminatelive = el.id
WHERE el.timeend <= $timenow";
to
$sql = "SELECT es.id, es.meetingid
FROM {$CFG->prefix}elluminatelive el
INNER JOIN {$CFG->prefix}elluminatelive_session es ON es.elluminatelive = el.id";