Skip to content
Snippets Groups Projects
Commit 35650f12 authored by B. Sc Pius Gyamenah's avatar B. Sc Pius Gyamenah :speech_balloon: Committed by Jan-Hendrik Willms
Browse files

allow mp4/m4a selection in courseware audio block

Closes #2028 and #1058

Merge request studip/studip!1412
parent 649486b2
No related branches found
No related tags found
1 merge request!4Draft: Icon creation
......@@ -92,7 +92,7 @@ export default {
if (this.isVideo && !videoConditions.some(condition => file.attributes['mime-type'].includes(condition))) {
return false;
}
const audioConditions = ['audio/wav', 'audio/ogg', 'audio/webm','audio/flac', 'audio/mpeg'];
const audioConditions = ['audio/wav', 'audio/ogg', 'audio/webm','audio/flac', 'audio/mpeg', 'audio/x-m4a', 'audio/mp4'];
if (this.isAudio && !audioConditions.some(condition => file.attributes['mime-type'].includes(condition)) ) {
return false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment