From 7058a58d2eab65134f465e04c5bd414b15cbedbe Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Thu, 30 Mar 2017 16:30:13 -0400 Subject: [PATCH] Bump maximum animated GIF file size to 25mb. // FREEBIE --- Signal/src/view controllers/SignalAttachment.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Signal/src/view controllers/SignalAttachment.swift b/Signal/src/view controllers/SignalAttachment.swift index 30421e9fb..2b2b07fb0 100644 --- a/Signal/src/view controllers/SignalAttachment.swift +++ b/Signal/src/view controllers/SignalAttachment.swift @@ -93,7 +93,7 @@ class SignalAttachment: NSObject { * * https://github.com/WhisperSystems/Signal-Android/blob/master/src/org/thoughtcrime/securesms/mms/PushMediaConstraints.java */ - static let kMaxFileSizeAnimatedImage = 15 * 1024 * 1024 + static let kMaxFileSizeAnimatedImage = 25 * 1024 * 1024 static let kMaxFileSizeImage = 6 * 1024 * 1024 static let kMaxFileSizeVideo = 100 * 1024 * 1024 static let kMaxFileSizeAudio = 100 * 1024 * 1024