We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d17c56 commit 706c116Copy full SHA for 706c116
WordPressUtils/src/main/java/org/wordpress/android/util/MediaUtils.java
@@ -75,7 +75,8 @@ public static boolean isAudio(String url) {
75
if (url == null) {
76
return false;
77
}
78
- return url.endsWith(".mp3") || url.endsWith(".ogg") || url.endsWith(".wav");
+ return url.endsWith(".mp3") || url.endsWith(".ogg") || url.endsWith(".wav") || url.endsWith(".wma") ||
79
+ url.endsWith(".aiff") || url.endsWith(".aif") || url.endsWith(".aac") || url.endsWith(".m4a");
80
81
82
/**
0 commit comments