mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-09-23 02:02:40 +01:00
Remove some unnecessary transcode size limits.
This commit is contained in:
committed by
Michelle Tang
parent
635b5795ea
commit
be9ae5c8f2
@@ -164,7 +164,7 @@ public final class StreamingTranscoder {
|
||||
final boolean sizeLimitEnabled = 0 < upperSizeLimit;
|
||||
|
||||
if (sizeLimitEnabled && upperSizeLimit < fileSizeEstimate) {
|
||||
throw new VideoSizeException("Size constraints could not be met!");
|
||||
throw new VideoSizeException("Size constraints could not be met! upperSizeLimit: " + upperSizeLimit + ", fileSizeEstimate: " + fileSizeEstimate);
|
||||
}
|
||||
|
||||
final long startTime = System.currentTimeMillis();
|
||||
|
||||
Reference in New Issue
Block a user