diff --git a/mobile/app/pods/components/music-tab/component.js b/mobile/app/pods/components/music-tab/component.js index 3ce5fcd..d819fe8 100644 --- a/mobile/app/pods/components/music-tab/component.js +++ b/mobile/app/pods/components/music-tab/component.js @@ -639,12 +639,10 @@ export default Component.extend(helperMixin, visualizerMixin, { if (files.hasOwnProperty(key)) { let file = files[key]; - if (file.type.startsWith('audio')) { - ID3.loadTags("local", updatePlayQueue.bind(file), { - dataReader: new FileAPIReader(file), - tags: ['title', 'artist', 'album', 'track', 'picture'] - }); - } + ID3.loadTags("local", updatePlayQueue.bind(file), { + dataReader: new FileAPIReader(file), + tags: ['title', 'artist', 'album', 'track', 'picture'] + }); } } } diff --git a/mobile/ember-cordova/cordova/config.xml b/mobile/ember-cordova/cordova/config.xml index 982d848..9a027e4 100644 --- a/mobile/ember-cordova/cordova/config.xml +++ b/mobile/ember-cordova/cordova/config.xml @@ -1,5 +1,5 @@ - + Huegasm