Prevent an error on the reverse authentication for the xml handler when its sent and invalid domain from FreeSWITCH.
This commit is contained in:
parent
05657b1dfb
commit
6af80a602a
|
|
@ -51,6 +51,11 @@
|
|||
domain_uuid = rows["domain_uuid"];
|
||||
end);
|
||||
end
|
||||
--if the domain_uuid is null then set an empty string
|
||||
if (domain_uuid == nil) then
|
||||
domain_uuid = " ";
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
--get the extension information
|
||||
|
|
|
|||
Loading…
Reference in New Issue