From 816495609fa3d87f452d041ca74e197a770cb8d6 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 4 Sep 2014 16:44:50 +0200 Subject: [PATCH] fix #788 --- plugins/labels.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/labels.py b/plugins/labels.py index 40e910a5..16aabf8d 100644 --- a/plugins/labels.py +++ b/plugins/labels.py @@ -24,6 +24,7 @@ from electrum_gui.qt import HelpButton, EnterButton class Plugin(BasePlugin): target_host = 'labelectrum.herokuapp.com' + encode_password = None def fullname(self): return _('Label Sync') @@ -37,7 +38,6 @@ class Plugin(BasePlugin): def encode(self, message): encrypted = aes.encryptData(self.encode_password, unicode(message)) encoded_message = base64.b64encode(encrypted) - return encoded_message def decode(self, message): @@ -87,6 +87,8 @@ class Plugin(BasePlugin): @hook def set_label(self, item,label, changed): + if self.encode_password is None: + return if not changed: return try: