Browse Source

Added compatibility for versions greater than 3.8.x

pull/1/head
klonfish 8 years ago
parent
commit
b62f45f166
  1. 5
      phoneinterface.py

5
phoneinterface.py

@ -61,7 +61,10 @@ class PhoneInterface(object): @@ -61,7 +61,10 @@ class PhoneInterface(object):
pconf = self.__core.create_proxy_config()
pconf.edit()
pconf.identity = p.identity
if self.__core.version < '3.9.0':
pconf.identity = p.identity
else:
pconf.identity_address = pconf.normalize_sip_uri(p.identity)
pconf.publish_enabled = False
pconf.realm = p.realm
pconf.register_enabled = True

Loading…
Cancel
Save