🎨Audio playback excludes "audio/mpegurl"
This commit is contained in:
parent
40a141aaaf
commit
e44c23b059
@ -279,7 +279,11 @@ export default {
|
|||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (file.mimeType.startsWith("audio/") && target === "view") {
|
if (
|
||||||
|
file.mimeType.startsWith("audio/") &&
|
||||||
|
file.mimeType !== "audio/mpegurl" &&
|
||||||
|
target === "view"
|
||||||
|
) {
|
||||||
if (window.aplayer) {
|
if (window.aplayer) {
|
||||||
this.add({
|
this.add({
|
||||||
audio: {
|
audio: {
|
||||||
|
Loading…
Reference in New Issue
Block a user