From 257de4b51e99edb1f366a4ea672df9d904ab3ddf Mon Sep 17 00:00:00 2001 From: Daniel Gultsch Date: Mon, 9 Mar 2020 15:06:21 +0100 Subject: [PATCH] fixed typo --- .../java/eu/siacs/conversations/http/HttpUploadConnection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/eu/siacs/conversations/http/HttpUploadConnection.java b/src/main/java/eu/siacs/conversations/http/HttpUploadConnection.java index ea893924f..3a21b4bad 100644 --- a/src/main/java/eu/siacs/conversations/http/HttpUploadConnection.java +++ b/src/main/java/eu/siacs/conversations/http/HttpUploadConnection.java @@ -115,7 +115,7 @@ public class HttpUploadConnection implements Transferable { //will still 'fallback' to bounce castle even on Android 9+ because conscrypt doesnt //have support for anything but 12. //For large files conscrypt has extremely bad performance; so why not always use 16 you ask? - //well the ecosystem was moving and some clients like Monal *only* support 16 + //well the ecosystem was moving and some clients like Monal *only* support 12 //so the result of this code is that we can only send 'small' files to Monal. //'small' was relatively arbitrarily choose and correlates to roughly 'small' compressed images this.key = new byte[originalFileSize <= 786432 ? 44 : 48];