Fix JoinGroupchat hotkey if zeroconf is active

This commit is contained in:
Philipp Hörist 2018-07-08 19:50:27 +02:00
parent a2d7283e6e
commit 3438b06069
1 changed files with 3 additions and 2 deletions

View File

@ -5521,8 +5521,9 @@ class RosterWindow:
""" """
# find a connected account: # find a connected account:
for account in app.connections: for account in app.connections:
if account == 'Local':
continue
if app.account_is_connected(account): if app.account_is_connected(account):
break
self.on_join_gc_activate(None, account) self.on_join_gc_activate(None, account)
return True return True