summaryrefslogtreecommitdiff
path: root/misc/freeswitch/scripts/dialplan/dialplan.lua
diff options
context:
space:
mode:
authorPeter Kozak <spag@golwen.net>2013-06-11 14:54:12 +0200
committerPeter Kozak <spag@golwen.net>2013-06-11 14:54:12 +0200
commit4f2e4d63597904c0f2b71398619ee3d1294f297a (patch)
treead0159a690227bf7880da906106d296c9e5b9e02 /misc/freeswitch/scripts/dialplan/dialplan.lua
parentaa7a4ebd68e1956fd8a0dbcfd4c8a617908ef47d (diff)
set_privacy removed
Diffstat (limited to 'misc/freeswitch/scripts/dialplan/dialplan.lua')
-rw-r--r--misc/freeswitch/scripts/dialplan/dialplan.lua3
1 files changed, 0 insertions, 3 deletions
diff --git a/misc/freeswitch/scripts/dialplan/dialplan.lua b/misc/freeswitch/scripts/dialplan/dialplan.lua
index 3f84007..f96f857 100644
--- a/misc/freeswitch/scripts/dialplan/dialplan.lua
+++ b/misc/freeswitch/scripts/dialplan/dialplan.lua
@@ -372,7 +372,6 @@ function Dialplan.dial(self, destination)
self.caller:set_caller_id(destination.caller_id_number, destination.caller_id_name or self.caller.caller_id_name);
else
self.caller:set_caller_id('anonymous', 'Unknown');
- self.caller:set_privacy(true);
end
local destinations = { destination };
@@ -418,7 +417,6 @@ function Dialplan.huntgroup(self, destination)
end
else
self.caller:set_caller_id('anonymous', tostring(hunt_group.record.name));
- self.caller:set_privacy(true);
end
self.caller.auth_account = hunt_group;
@@ -449,7 +447,6 @@ function Dialplan.acd(self, destination)
end
else
self.caller:set_caller_id('anonymous', tostring(acd.record.name));
- self.caller:set_privacy(true);
end
self.caller.auth_account = acd;