Skip to content
Snippets Groups Projects
Commit a7bdaffc authored by inso's avatar inso
Browse files

Fix bug #281

parent 5ab6cdac
No related branches found
No related tags found
No related merge requests found
...@@ -454,7 +454,7 @@ class Application(QObject): ...@@ -454,7 +454,7 @@ class Application(QObject):
name, 'properties') name, 'properties')
json_data = open(account_path, 'r') json_data = open(account_path, 'r')
data = json.load(json_data) data = json.load(json_data)
account = Account.load(data) account = Account.load(data, self._identities_registry)
account.name = name account.name = name
self.add_account(account) self.add_account(account)
self.save(account) self.save(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