use application/pgp-encrypted mime type when necessary for http upload
This commit is contained in:
parent
9dcd0bf16b
commit
3889c0eb01
|
@ -96,7 +96,11 @@ public class HttpUploadConnection implements Transferable {
|
||||||
this.message = message;
|
this.message = message;
|
||||||
this.account = message.getConversation().getAccount();
|
this.account = message.getConversation().getAccount();
|
||||||
this.file = mXmppConnectionService.getFileBackend().getFile(message, false);
|
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;
|
this.delayed = delay;
|
||||||
if (Config.ENCRYPT_ON_HTTP_UPLOADED
|
if (Config.ENCRYPT_ON_HTTP_UPLOADED
|
||||||
|| message.getEncryption() == Message.ENCRYPTION_AXOLOTL
|
|| message.getEncryption() == Message.ENCRYPTION_AXOLOTL
|
||||||
|
|
Loading…
Reference in a new issue