aboutsummaryrefslogtreecommitdiff
path: root/plugins/omemo/src/jingle
diff options
context:
space:
mode:
authorfiaxh <git@lightrise.org>2020-09-02 16:47:41 +0200
committerfiaxh <git@lightrise.org>2020-09-07 15:14:29 +0200
commit49bcbdaa517e5d6f8d4860db70ae0a9960e2c519 (patch)
tree7275f69dc7ef36022eace7cfbc0bb7f66be60824 /plugins/omemo/src/jingle
parente327a88898a90543f1de851274274139642c9a21 (diff)
downloaddino-49bcbdaa517e5d6f8d4860db70ae0a9960e2c519.tar.gz
dino-49bcbdaa517e5d6f8d4860db70ae0a9960e2c519.zip
Fix initial file encryption displaying
fixes #831
Diffstat (limited to 'plugins/omemo/src/jingle')
-rw-r--r--plugins/omemo/src/jingle/jingle_helper.vala8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/omemo/src/jingle/jingle_helper.vala b/plugins/omemo/src/jingle/jingle_helper.vala
index 4b6ed646..ec6c0eca 100644
--- a/plugins/omemo/src/jingle/jingle_helper.vala
+++ b/plugins/omemo/src/jingle/jingle_helper.vala
@@ -42,12 +42,12 @@ public class EncryptionHelper : JingleFileEncryptionHelper, Object {
return new Xep.Jet.Options(Omemo.NS_URI, AES_128_GCM_URI);
}
- public FileMeta complete_meta(FileTransfer file_transfer, FileReceiveData receive_data, FileMeta file_meta, Xmpp.Xep.JingleFileTransfer.FileTransfer jingle_transfer) {
+ public Encryption get_encryption(Xmpp.Xep.JingleFileTransfer.FileTransfer jingle_transfer) {
Xep.Jet.SecurityParameters? security = jingle_transfer.security as Xep.Jet.SecurityParameters;
if (security != null && security.encoding.get_type_uri() == Omemo.NS_URI) {
- file_transfer.encryption = Encryption.OMEMO;
+ return Encryption.OMEMO;
}
- return file_meta;
+ return Encryption.NONE;
}
}
-} \ No newline at end of file
+}