kopia lustrzana https://github.com/ryukoposting/Signal-Android
Do not compress stickers.
rodzic
214cb25d1b
commit
afee8631e1
|
@ -160,7 +160,9 @@ public final class AttachmentCompressionJob extends BaseJob {
|
||||||
throws UndeliverableMessageException
|
throws UndeliverableMessageException
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
if (MediaUtil.isVideo(attachment)) {
|
if (attachment.isSticker()) {
|
||||||
|
Log.d(TAG, "Sticker, not compressing.");
|
||||||
|
} else if (MediaUtil.isVideo(attachment)) {
|
||||||
Log.i(TAG, "Compressing video.");
|
Log.i(TAG, "Compressing video.");
|
||||||
attachment = transcodeVideoIfNeededToDatabase(context, attachmentDatabase, attachment, constraints, EventBus.getDefault(), this::isCanceled);
|
attachment = transcodeVideoIfNeededToDatabase(context, attachmentDatabase, attachment, constraints, EventBus.getDefault(), this::isCanceled);
|
||||||
if (!constraints.isSatisfied(context, attachment)) {
|
if (!constraints.isSatisfied(context, attachment)) {
|
||||||
|
|
Ładowanie…
Reference in New Issue