mirror of
https://github.com/oxen-io/session-android.git
synced 2025-02-17 13:08:25 +00:00
Do not treat SVGs as regular images.
This commit is contained in:
parent
0da8613075
commit
79086e41fc
@ -226,7 +226,9 @@ public class MediaUtil {
|
||||
}
|
||||
|
||||
public static boolean isImageType(String contentType) {
|
||||
return (null != contentType) && contentType.startsWith("image/");
|
||||
return (null != contentType)
|
||||
&& contentType.startsWith("image/")
|
||||
&& !contentType.contains("svg"); // Do not treat SVGs as regular images.
|
||||
}
|
||||
|
||||
public static boolean isAudioType(String contentType) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user