Add 922 as another emergency test number

This commit is contained in:
FusionPBX 2025-02-19 10:37:40 -07:00 committed by GitHub
parent 679b407562
commit 7503ff40de
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -192,9 +192,10 @@ end);
--set event
if (tonumber(destination_number) == 933) then
event = '933 Emergency Address Validation Service';
else if (tonumber(destination_number) == 911) then
elseif (tonumber(destination_number) == 922) then
event = '922 Emergency Address Validation Service';
elseif (tonumber(destination_number) == 911) then
event = '911 Emergency Call';
end
end
--connect to the database
@ -261,4 +262,3 @@ end
dbh:query(sql, params);
dbh:release();