diff options
author | steckbrief <steckbrief@chefmail.de> | 2016-04-19 20:14:04 +0200 |
---|---|---|
committer | steckbrief <steckbrief@chefmail.de> | 2016-04-19 20:14:04 +0200 |
commit | 4db32cdc8f44382c8768c4057851116cae07bf30 (patch) | |
tree | e67997fb658b9ca0faeb2dcf728dbb549f108712 /src/main/java/de/thedevstack/conversationsplus/http | |
parent | ee0264d98c9a348ea29d12796bed25f9ba1494fb (diff) |
Related to FS#134: Set Message flags according to httpupload hint
Diffstat (limited to 'src/main/java/de/thedevstack/conversationsplus/http')
-rw-r--r-- | src/main/java/de/thedevstack/conversationsplus/http/HttpUploadConnection.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/de/thedevstack/conversationsplus/http/HttpUploadConnection.java b/src/main/java/de/thedevstack/conversationsplus/http/HttpUploadConnection.java index 6c546fee..da24f5ab 100644 --- a/src/main/java/de/thedevstack/conversationsplus/http/HttpUploadConnection.java +++ b/src/main/java/de/thedevstack/conversationsplus/http/HttpUploadConnection.java @@ -97,6 +97,8 @@ public class HttpUploadConnection implements Transferable { public void init(Message message, boolean delay) { this.message = message; + this.message.setHttpUploaded(true); + this.message.setNoDownloadable(); this.account = message.getConversation().getAccount(); this.file = FileBackend.getFile(message, false); this.mime = this.file.getMimeType(); |