summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorspag <spag@golwen.net>2013-01-20 16:18:19 +0100
committerspag <spag@golwen.net>2013-01-20 16:18:19 +0100
commitcc16ae7cc59189468854c455bde43a2609350964 (patch)
tree055217000a7c520157d21ede7cdb746c5490e2c6
parente840f0b4d7bab10b53174b607ed60e1bce450321 (diff)
unused variable removed
-rw-r--r--misc/freeswitch/scripts/send_fax.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/freeswitch/scripts/send_fax.lua b/misc/freeswitch/scripts/send_fax.lua
index 35460a3..11cd1d7 100644
--- a/misc/freeswitch/scripts/send_fax.lua
+++ b/misc/freeswitch/scripts/send_fax.lua
@@ -94,7 +94,7 @@ else
local result = dialplan:retrieve_caller_data();
local dialplan_router = require('dialplan.router');
- local routes = dialplan_router.Router:new{ log = log, database = database, caller = caller, variables = caller }:route_run('outbound', destination_number);
+ local routes = dialplan_router.Router:new{ log = log, database = database, caller = caller, variables = caller }:route_run('outbound');
if not routes or #routes == 0 then
log:notice('SWITCH - no route - number: ', destination_number);