Added compatibility for versions greater than 3.8.x

This commit is contained in:
klonfish 2015-12-27 21:05:05 +01:00
parent a6a82cfd87
commit b62f45f166
1 changed files with 4 additions and 1 deletions

View File

@ -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