kopia lustrzana https://github.com/ryukoposting/Signal-Android
rodzic
a2d63d117b
commit
24e14cbc73
|
@ -88,7 +88,7 @@ public class AttachmentManager {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setImage(MasterSecret masterSecret, Uri image) throws IOException, BitmapDecodingException {
|
public void setImage(MasterSecret masterSecret, Uri image) throws IOException, BitmapDecodingException {
|
||||||
if (MediaUtil.getMimeType(context, image).startsWith("image/gif")) {
|
if (MediaUtil.isGif(MediaUtil.getMimeType(context, image))) {
|
||||||
setMedia(new GifSlide(context, masterSecret, image), masterSecret);
|
setMedia(new GifSlide(context, masterSecret, image), masterSecret);
|
||||||
} else {
|
} else {
|
||||||
setMedia(new ImageSlide(context, masterSecret, image), masterSecret);
|
setMedia(new ImageSlide(context, masterSecret, image), masterSecret);
|
||||||
|
|
|
@ -84,7 +84,7 @@ public class MediaUtil {
|
||||||
return type;
|
return type;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static boolean isGif(String contentType) {
|
public static boolean isGif(String contentType) {
|
||||||
return !TextUtils.isEmpty(contentType) && contentType.trim().equals("image/gif");
|
return !TextUtils.isEmpty(contentType) && contentType.trim().equals("image/gif");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue