From 8ef4e7eed08393eafe6b2fe8fc794d1041d7ec57 Mon Sep 17 00:00:00 2001 From: Christian Schneppe Date: Thu, 1 Jun 2017 20:35:13 +0200 Subject: use application/pgp-encrypted mime type when necessary for http upload --- src/main/java/de/pixart/messenger/http/HttpUploadConnection.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/main/java') diff --git a/src/main/java/de/pixart/messenger/http/HttpUploadConnection.java b/src/main/java/de/pixart/messenger/http/HttpUploadConnection.java index 84478561b..1488b3366 100644 --- a/src/main/java/de/pixart/messenger/http/HttpUploadConnection.java +++ b/src/main/java/de/pixart/messenger/http/HttpUploadConnection.java @@ -96,7 +96,11 @@ public class HttpUploadConnection implements Transferable { this.message = message; this.account = message.getConversation().getAccount(); this.file = mXmppConnectionService.getFileBackend().getFile(message, false); - this.mime = this.file.getMimeType(); + if (message.getEncryption() == Message.ENCRYPTION_PGP || message.getEncryption() == Message.ENCRYPTION_DECRYPTED) { + this.mime = "application/pgp-encrypted"; + } else { + this.mime = this.file.getMimeType(); + } this.delayed = delay; if (Config.ENCRYPT_ON_HTTP_UPLOADED || message.getEncryption() == Message.ENCRYPTION_AXOLOTL -- cgit v1.2.3