Skip to content

Commit b60ba49

Browse files
authored
h
1 parent 836af8f commit b60ba49

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

builder.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ <h3></h3>
269269
const fileItem = epkFiles[selectedFile];
270270
editorName.innerText = fileItem.name;
271271
const lowerName = fileItem.name.toLowerCase();
272-
if (lowerName.endsWith('.mp3')) {
272+
if (lowerName.endsWith('.mp3') || lowerName.endsWith('.ogg')) {
273273
editor.className = 'modea';
274274
editorAudio.src = window.URL.createObjectURL(fileItem.data);
275275
} else if (lowerName.endsWith('.png')) {
@@ -327,4 +327,4 @@ <h3></h3>
327327
};
328328
</script>
329329
</body>
330-
</html>
330+
</html>

0 commit comments

Comments
 (0)