diff options
author | spag <spag@golwen.net> | 2012-12-27 23:35:17 +0100 |
---|---|---|
committer | spag <spag@golwen.net> | 2012-12-27 23:35:17 +0100 |
commit | 66e54fe90fa3a759a5e33cd018703992da475c63 (patch) | |
tree | d97b2057a1010ec9ac06d0a681f7e09f68946535 /misc/freeswitch/scripts/common | |
parent | b76b13bff13cd6bcb2d543386cae9868cd4d882f (diff) |
variable context fixed
Diffstat (limited to 'misc/freeswitch/scripts/common')
-rw-r--r-- | misc/freeswitch/scripts/common/call_history.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/freeswitch/scripts/common/call_history.lua b/misc/freeswitch/scripts/common/call_history.lua index 364cfbf..7a9ac07 100644 --- a/misc/freeswitch/scripts/common/call_history.lua +++ b/misc/freeswitch/scripts/common/call_history.lua @@ -114,7 +114,7 @@ function CallHistory.insert_forwarded(self, uuid, account_type, account_id, call call_history.result = common.str.to_sql(result.cause or 'UNSPECIFIED'); call_history.start_stamp = 'FROM_UNIXTIME(' .. math.floor(caller:to_i('created_time') / 1000000) .. ')'; - if caller.account and not common.str.to_b(event:getHeader('variable_gs_clir')) then + if caller.account and not caller.clir then call_history.caller_account_type = common.str.to_sql(camelize_type(caller.account.class)); call_history.caller_account_id = common.str.to_sql(caller.account.id); end |