summaryrefslogtreecommitdiff
path: root/plugins/upload.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/upload.py')
-rw-r--r--plugins/upload.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/upload.py b/plugins/upload.py
index 4ca61495..6926c075 100644
--- a/plugins/upload.py
+++ b/plugins/upload.py
@@ -88,7 +88,7 @@ class Plugin(BasePlugin):
filename, = args
filename = expanduser(filename)
tab = self.api.current_tab()
- encrypted = self.core.xmpp['xep_0454'] and tab.e2e_encrypted is not None
+ encrypted = self.core.xmpp['xep_0454'] and tab.e2e_encryption is not None
asyncio.create_task(self.send_upload(filename, tab, encrypted))
@staticmethod