From d48d98893f2df81bb7b705b9c977305d15a21d11 Mon Sep 17 00:00:00 2001 From: Andrew Querol Date: Tue, 9 Mar 2021 16:23:49 -0600 Subject: [PATCH] Update switch_recordings.php recording_base64 was pulled from the database and never used. Remove it to optimise base64 handling. --- app/recordings/resources/classes/switch_recordings.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/recordings/resources/classes/switch_recordings.php b/app/recordings/resources/classes/switch_recordings.php index 92ad64db2a..77549ab6f0 100644 --- a/app/recordings/resources/classes/switch_recordings.php +++ b/app/recordings/resources/classes/switch_recordings.php @@ -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 } -?> \ No newline at end of file +?>