From ca24dfd62d0b7b7c35f8abe9a5c59d6093024574 Mon Sep 17 00:00:00 2001 From: IrosTheBeggar Date: Tue, 16 Feb 2021 00:14:09 -0500 Subject: [PATCH] format filepath in playlist --- webapp/assets/js/mstream.vue-player-controls.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/assets/js/mstream.vue-player-controls.js b/webapp/assets/js/mstream.vue-player-controls.js index 645453a..1a2b09a 100644 --- a/webapp/assets/js/mstream.vue-player-controls.js +++ b/webapp/assets/js/mstream.vue-player-controls.js @@ -161,7 +161,7 @@ var VUEPLAYER = (function () { }, computed: { comtext: function () { - var returnThis = this.song.filepath; + let returnThis = this.song.filepath.split('/').pop(); if (this.song.metadata.title) { returnThis = this.song.metadata.title;