We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec04675 commit ef4143bCopy full SHA for ef4143b
WordPressUtils/src/main/java/org/wordpress/android/util/MediaUtils.java
@@ -68,7 +68,7 @@ public static boolean isVideo(String url) {
68
}
69
return url.endsWith(".ogv") || url.endsWith(".mp4") || url.endsWith(".m4v") || url.endsWith(".mov") ||
70
url.endsWith(".wmv") || url.endsWith(".avi") || url.endsWith(".mpg") || url.endsWith(".3gp") ||
71
- url.endsWith(".3g2");
+ url.endsWith(".3g2") || url.contains("video");
72
73
74
public static boolean isAudio(String url) {
0 commit comments