Skip to content
Snippets Groups Projects
Commit d6cda889 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

fix function argument. Fixes #7229

parent 5f7451bb
No related branches found
No related tags found
No related merge requests found
......@@ -965,7 +965,7 @@ class ConnectionHandlersBase:
if sess.enable_encryption:
sess.terminate_e2e()
def decrypt_thread(encmsg, keyID, obj):
def decrypt_thread(self, encmsg, keyID, obj):
decmsg = self.gpg.decrypt(encmsg, keyID)
decmsg = self.connection.Dispatcher.replace_non_character(decmsg)
# \x00 chars are not allowed in C (so in GTK)
......
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