Merge pull request #5798 from winsock/patch-5
Update switch_recordings.php to optimize base64 recordings
This commit is contained in:
commit
a3269a3d6d
|
|
@ -76,7 +76,7 @@ if (!class_exists('switch_recordings')) {
|
||||||
* list recordings
|
* list recordings
|
||||||
*/
|
*/
|
||||||
public function list_recordings() {
|
public function list_recordings() {
|
||||||
$sql = "select recording_uuid, recording_filename, recording_base64 ";
|
$sql = "select recording_uuid, recording_filename ";
|
||||||
$sql .= "from v_recordings ";
|
$sql .= "from v_recordings ";
|
||||||
$sql .= "where domain_uuid = :domain_uuid ";
|
$sql .= "where domain_uuid = :domain_uuid ";
|
||||||
$parameters['domain_uuid'] = $this->domain_uuid;
|
$parameters['domain_uuid'] = $this->domain_uuid;
|
||||||
|
|
@ -167,4 +167,4 @@ if (!class_exists('switch_recordings')) {
|
||||||
} //class
|
} //class
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue