Remove transcription from voicemails index.lua

Transcription was moved to the email queue
This commit is contained in:
FusionPBX 2024-09-10 01:08:55 -06:00 committed by GitHub
parent 6d7b3a9249
commit 86df5a2e6a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 7 deletions

View File

@ -567,9 +567,6 @@
if (storage_type == "base64") then
table.insert(sql, "message_base64, ");
end
if (voicemail_transcription_enabled == "true") then
table.insert(sql, "message_transcription, ");
end
table.insert(sql, "message_length ");
--table.insert(sql, "message_status, ");
--table.insert(sql, "message_priority, ");
@ -585,9 +582,6 @@
if (storage_type == "base64") then
table.insert(sql, ":message_base64, ");
end
if (voicemail_transcription_enabled == "true") then
table.insert(sql, ":transcription, ");
end
table.insert(sql, ":message_length ");
--table.insert(sql, ":message_status, ");
--table.insert(sql, ":message_priority ");
@ -601,7 +595,6 @@
caller_id_name = caller_id_name;
caller_id_number = caller_id_number;
message_base64 = message_base64;
transcription = transcription;
message_length = message_length;
--message_status = message_status;
--message_priority = message_priority;