remove some notes

This commit is contained in:
janis
2023-11-21 09:33:54 +01:00
parent 290edd56ce
commit 731e175b53

View File

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