From 731e175b53668b253255711ec5b1bb81937ed1f5 Mon Sep 17 00:00:00 2001 From: janis Date: Tue, 21 Nov 2023 09:33:54 +0100 Subject: [PATCH] remove some notes --- frontend/src/client/appleMusic/index.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/frontend/src/client/appleMusic/index.js b/frontend/src/client/appleMusic/index.js index 0cd951e..5a4a549 100644 --- a/frontend/src/client/appleMusic/index.js +++ b/frontend/src/client/appleMusic/index.js @@ -155,7 +155,6 @@ const app = Vue.createApp( { } } } - // TODO: update all those items to use custom queue manager for queue pos this.playingSong = this.songQueue[ this.queuePos ]; this.sendUpdate( 'songQueue' ); this.sendUpdate( 'playingSong' ); @@ -323,8 +322,6 @@ const app = Vue.createApp( { this.playbackPosBeautified += secondCount; } - // TODO: Check playback duration with backend analysis - if ( this.isShowingRemainingTime ) { const minuteCounts = Math.floor( ( this.playingSong.duration - this.pos ) / 60 ); this.durationBeautified = '-' + String( minuteCounts ) + ':';