diff --git a/public/js/mstream.js b/public/js/mstream.js index b4af88f..9ba2664 100755 --- a/public/js/mstream.js +++ b/public/js/mstream.js @@ -939,7 +939,7 @@ $(document).ready(function () { var filelist = []; $.each(response, function () { if (this.metadata.title) { - currentBrowsingList.push({ type: 'file', name: this.metadata.title }) + currentBrowsingList.push({ type: 'file', name: this.metadata.artist + ' - ' + this.metadata.title }) filelist.push('
' + this.metadata.artist + ' - ' + this.metadata.title + '
'); } else { currentBrowsingList.push({ type: 'file', name: this.metadata.filename })