Browse Source

[FIX] There shouldn't be any space between the name and the phone number in the callerID instruction to Asterisk.

Patch courtesy of Marcel van der Boom. Thanks for your feedback !
6.0
Alexis de Lattre 14 years ago
parent
commit
5ee8c2e585
  1. 2
      asterisk_click2dial/scripts/get_cid_name.py

2
asterisk_click2dial/scripts/get_cid_name.py

@ -156,7 +156,7 @@ def main(options, arguments):
sys.stdout.write('VERBOSE "CallerID Name = %s"\n' % res_ascii)
sys.stdout.flush()
sys.stdout.write('SET CALLERID "%s" <%s>\n' % (res_ascii, input_cid_number))
sys.stdout.write('SET CALLERID "%s"<%s>\n' % (res_ascii, input_cid_number))
sys.stdout.flush()
if __name__ == '__main__':

Loading…
Cancel
Save