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 a70f524 commit e5eb8c7Copy full SHA for e5eb8c7
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