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 ) + ':';