From c94a7f50810eeff26eace9b7bbe0728eb7beba4c Mon Sep 17 00:00:00 2001 From: agree <37550360+greenbea@users.noreply.github.com> Date: Thu, 2 Dec 2021 19:42:23 -0500 Subject: [PATCH] [xml handler] Fix error channel (#6167) using !USER_BUSY gives an error `Could not locate channel type !USER_BUSY` --- .../app/xml_handler/resources/scripts/directory/directory.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/scripts/resources/scripts/app/xml_handler/resources/scripts/directory/directory.lua b/app/scripts/resources/scripts/app/xml_handler/resources/scripts/directory/directory.lua index c53ebb29c8..b3195f53e2 100644 --- a/app/scripts/resources/scripts/app/xml_handler/resources/scripts/directory/directory.lua +++ b/app/scripts/resources/scripts/app/xml_handler/resources/scripts/directory/directory.lua @@ -384,7 +384,7 @@ continue = true; --set the dial_string if (do_not_disturb == "true") then - dial_string = "!USER_BUSY"; + dial_string = "error/user_busy"; elseif (string.len(row.dial_string) > 0) then dial_string = row.dial_string; else