Update switch_recordings.php

recording_base64 was pulled from the database and never used. Remove it to optimise base64 handling.
This commit is contained in:
Andrew Querol 2021-03-09 16:23:49 -06:00 committed by GitHub
parent a2bda47f35
commit d48d98893f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ if (!class_exists('switch_recordings')) {
* 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 .= "where domain_uuid = :domain_uuid ";
$parameters['domain_uuid'] = $this->domain_uuid;
@ -167,4 +167,4 @@ if (!class_exists('switch_recordings')) {
} //class
}
?>
?>