~music-app-dev/music-app/music-streaming

« back to all changes in this revision

Viewing changes to app/music-app.qml

  • Committer: Andrew Hayzen
  • Date: 2016-02-04 19:13:45 UTC
  • Revision ID: ahayzen@gmail.com-20160204191345-5x8uqztia1p09kza
* When mediascanner rescans allow stream urls so that the queue is not emptied

Show diffs side-by-side

added added

removed removed

Lines of Context:
436
436
                        file = file.substr(7);
437
437
                    }
438
438
 
439
 
                    if (musicStore.lookup(file) === null) {
 
439
                    if (file.indexOf("spotify://") !== 0 && musicStore.lookup(file) === null) {
440
440
                        removed.push(i)
441
441
                    }
442
442
                }