From 40189e8737687457c817f5057908a4f62865a298 Mon Sep 17 00:00:00 2001 From: Thomas Ballmann Date: Sat, 14 Mar 2020 11:30:25 +0100 Subject: [PATCH] bugfix playlist progress was not working --- app/src/App.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/src/App.vue b/app/src/App.vue index 86e53df..3b2088f 100644 --- a/app/src/App.vue +++ b/app/src/App.vue @@ -181,7 +181,7 @@ }, playlistProgress () { - return parseInt(100 / 60 * this.stats.playlist.remaining) + return parseInt(100 / 60 * this.playlistRemaining) } }, methods: { @@ -192,7 +192,6 @@ this.stats = stats this.playlistRemaining = stats.playlist.remaining - this.playlistTimerProgress = parseInt(100 / 60 * stats.playlist.remaining) if (cb) { cb()