summaryrefslogtreecommitdiff
path: root/misc/freeswitch/scripts/dialplan/router.lua
diff options
context:
space:
mode:
authorspag <spag@golwen.net>2013-01-20 16:16:36 +0100
committerspag <spag@golwen.net>2013-01-20 16:16:36 +0100
commit79e4b0b95336d568b5f65bcd793995a7d0d4ee50 (patch)
tree12ae8614c253c0778e479eec6613a9a9f801ed30 /misc/freeswitch/scripts/dialplan/router.lua
parentbcbfb154a321953fd32696065e6af1bec85f9345 (diff)
unused variable removed
Diffstat (limited to 'misc/freeswitch/scripts/dialplan/router.lua')
-rw-r--r--misc/freeswitch/scripts/dialplan/router.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/freeswitch/scripts/dialplan/router.lua b/misc/freeswitch/scripts/dialplan/router.lua
index 5f427ac..7e64d7b 100644
--- a/misc/freeswitch/scripts/dialplan/router.lua
+++ b/misc/freeswitch/scripts/dialplan/router.lua
@@ -162,13 +162,13 @@ function Router.route_match(self, route)
end
-function Router.route_run(self, table_name, phone_number, find_first)
+function Router.route_run(self, table_name, find_first)
local routing_table = self:read_table(table_name);
local routes = {};
if type(routing_table) == 'table' then
for index=1, #routing_table do
- local route = self:route_match(routing_table[index], phone_number);
+ local route = self:route_match(routing_table[index]);
if route then
table.insert(routes, route);
self.log:info('ROUTE ', #routes,' - ', table_name,'=', routing_table[index].id, '/', routing_table[index].name, ', destination: ', route.type, '=', route.id, ', destination_number: ', route.destination_number);