Skip to content

Commit

Permalink
BUGFIX: .wav files now work correctly
Browse files Browse the repository at this point in the history
They were missing from the mime type dictionary and were
not loadable.
  • Loading branch information
timmahrt committed Apr 20, 2018
1 parent 7298134 commit e785bbe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion html/lmeds-audio.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ var LmedsAudio = function() {
".mp3": "mpeg",
".mp4": "mpeg",
".webm": "webm",
".ogg": "ogg"
".ogg": "ogg",
".wav": "wav",
};
this.media_type_dict = {
AUDIO: "audio",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from distutils.core import setup
import io
setup(name='lmeds',
version='2.5.0',
version='2.5.1',
author='Tim Mahrt',
author_email='timmahrt@gmail.com',
package_dir={'lmeds': 'lmeds'},
Expand Down

0 comments on commit e785bbe

Please sign in to comment.