Skip to content
Snippets Groups Projects
Commit 65593c61 authored by Philipp Hörist's avatar Philipp Hörist
Browse files

Fix undefined var

parent 9411ccd8
No related branches found
No related tags found
No related merge requests found
...@@ -263,7 +263,7 @@ class Interface: ...@@ -263,7 +263,7 @@ class Interface:
if account in self.show_vcard_when_connect and obj.show not in ( if account in self.show_vcard_when_connect and obj.show not in (
'offline', 'error'): 'offline', 'error'):
self.edit_own_details(account) self.edit_own_details(account)
self.show_vcard_when_connect.remove(self.name) self.show_vcard_when_connect.remove(account)
def edit_own_details(self, account): def edit_own_details(self, account):
jid = app.get_jid_from_account(account) jid = app.get_jid_from_account(account)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment