Fixed flac detection bug on web app

This commit is contained in:
Paul Sori 2016-12-29 14:23:10 -05:00
parent 8fc5d62769
commit e66bb274f4

View File

@ -602,8 +602,7 @@ Custom property | Description
}
if(oldValue.slice(-5) === '.flac'){
if(oldValue.indexOf('.flac') !== -1){
player.aurora = true;
AVplayer = AV.Player.fromURL(oldValue);