IVR was broken after previous update/change.
This commit is contained in:
Zachary Kitchen 2018-12-04 01:15:02 -06:00 committed by FusionPBX
parent 11e445fb48
commit 017615baaf
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@
local settings = Settings.new(dbh, domain_name, domain_uuid)
local storage_type = settings:get('recordings', 'storage_type', 'text')
local storage_path = settings:get('recordings', 'storage_path', 'text')
if (storage_path != nil then
if (storage_path ~= nil) then
storage_path = storage_path:gsub("${domain_name}", domain_name)
storage_path = storage_path:gsub("${domain_uuid}", domain_uuid)
end