Commit 7d2d2c8b authored by Dan Pascu's avatar Dan Pascu

No longer decode display_name as it's unicode now

parent ea52823c
......@@ -135,7 +135,7 @@ class Blink(QApplication):
account = account_manager.get_account(account_id)
except KeyError:
account = Account(account_id)
account.display_name = data['display_name'].decode('utf-8')
account.display_name = data['display_name'] or None
default_account = account
else:
default_account = account_manager.default_account
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment