Update index.lua
This commit is contained in:
parent
d9023b530e
commit
6b24951874
|
|
@ -437,7 +437,7 @@
|
||||||
|
|
||||||
if file_exists(full_path) then
|
if file_exists(full_path) then
|
||||||
--read file content as base64 string
|
--read file content as base64 string
|
||||||
message_base64 = assert(file.read_base64(full_path));
|
message_base64 = file.read_base64(full_path);
|
||||||
--freeswitch.consoleLog("notice", "[voicemail] ".. message_base64 .. "\n");
|
--freeswitch.consoleLog("notice", "[voicemail] ".. message_base64 .. "\n");
|
||||||
|
|
||||||
--delete the file
|
--delete the file
|
||||||
|
|
@ -454,10 +454,10 @@
|
||||||
x = 1;
|
x = 1;
|
||||||
table.insert(destinations, {domain_uuid=domain_uuid,voicemail_destination_uuid=voicemail_uuid,voicemail_uuid=voicemail_uuid,voicemail_uuid_copy=voicemail_uuid});
|
table.insert(destinations, {domain_uuid=domain_uuid,voicemail_destination_uuid=voicemail_uuid,voicemail_uuid=voicemail_uuid,voicemail_uuid_copy=voicemail_uuid});
|
||||||
x = x + 1;
|
x = x + 1;
|
||||||
assert(dbh:query(sql, params, function(row)
|
dbh:query(sql, params, function(row)
|
||||||
destinations[x] = row;
|
destinations[x] = row;
|
||||||
x = x + 1;
|
x = x + 1;
|
||||||
end));
|
end);
|
||||||
|
|
||||||
--show the storage type
|
--show the storage type
|
||||||
freeswitch.consoleLog("notice", "[voicemail] ".. storage_type .. "\n");
|
freeswitch.consoleLog("notice", "[voicemail] ".. storage_type .. "\n");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue