diff options
author | Peter Kozak <spag@golwen.net> | 2013-07-04 14:59:54 +0200 |
---|---|---|
committer | Peter Kozak <spag@golwen.net> | 2013-07-04 14:59:54 +0200 |
commit | 9a15a154da657961a5430225503852d3347e3e08 (patch) | |
tree | aecd0a39f20c18c19770edf5da91b1eb0dc4c836 /misc/freeswitch/scripts/dialplan | |
parent | 59fddbdd5e07b7e9aa39d4504b0c1f02a3f6d031 (diff) |
return true
Diffstat (limited to 'misc/freeswitch/scripts/dialplan')
-rw-r--r-- | misc/freeswitch/scripts/dialplan/dialplan.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/misc/freeswitch/scripts/dialplan/dialplan.lua b/misc/freeswitch/scripts/dialplan/dialplan.lua index 7473a33..56a5def 100644 --- a/misc/freeswitch/scripts/dialplan/dialplan.lua +++ b/misc/freeswitch/scripts/dialplan/dialplan.lua @@ -130,6 +130,7 @@ function Dialplan.auth_account(self) return true; elseif not common.str.blank(self.caller.previous_destination_type) and not common.str.blank(self.caller.previous_destination_uuid) then self.log:info('AUTH previous_destination - ', self.caller.previous_destination_type, '=', self.caller.previous_destination_id, '/', self.caller.previous_destination_uuid); + return true; end end |