mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-24 00:37:47 +00:00
We don't support unknown content lengths yet.
This commit is contained in:
parent
2e55e9cdca
commit
01fdb1115d
@ -157,6 +157,9 @@ public class MmsCommunication {
|
||||
if (entity == null || entity.getContentLength() == 0)
|
||||
throw new IOException("Null response");
|
||||
|
||||
if (entity.getContentLength() < 0)
|
||||
throw new IOException("Unknown content length!");
|
||||
|
||||
byte[] responseBytes = new byte[(int)entity.getContentLength()];
|
||||
DataInputStream dataInputStream = new DataInputStream(entity.getContent());
|
||||
dataInputStream.readFully(responseBytes);
|
||||
|
Loading…
x
Reference in New Issue
Block a user