Fix the nick conflict code

also yapf -rip
This commit is contained in:
mathieui 2018-02-11 19:53:38 +01:00
parent 957ee8084d
commit 87ed4aff12
No known key found for this signature in database
GPG key ID: C59F84CEEFD616E3
2 changed files with 9 additions and 4 deletions

View file

@ -2114,8 +2114,9 @@ class Core(object):
tab.add_message(msg, typ=2)
if code == '409':
if config.get('alternative_nickname') != '':
tab.own_nick += config.get('alternative_nickname')
tab.join()
if not tab.joined:
tab.own_nick += config.get('alternative_nickname')
tab.join()
else:
if not tab.joined:
tab.add_message(

View file

@ -415,7 +415,8 @@ class HandlerCore:
result = yield from self.core.xmpp[
'xep_0084'].retrieve_avatar(
jid, avatar_hash, timeout=60)
avatar = result['pubsub']['items']['item']['avatar_data']['value']
avatar = result['pubsub']['items']['item']['avatar_data'][
'value']
if sha1(avatar).hexdigest().lower() != avatar_hash.lower():
raise Exception('Avatar sha1 doesnt match 0084 hash.')
contact.avatar = avatar
@ -433,7 +434,10 @@ class HandlerCore:
with open(cached_path, 'wb') as avatar_file:
avatar_file.write(contact.avatar)
except OSError:
log.debug('Failed writing %s avatar to cache:', jid, exc_info=True)
log.debug(
'Failed writing %s avatar to cache:',
jid,
exc_info=True)
pass
return