Remove unused nextTrackTimer due to lint

It seems that this field is not used elsewhere in the project:

        $ ag nextTrackTimer
        backend/player/jukebox/jukeboxplayer.go
        30:     nextTrackTimer     *time.Timer
This commit is contained in:
Simon Symeonidis
2025-05-17 21:56:15 -04:00
parent 4a4596f144
commit 22755a924a
-1
View File
@@ -27,7 +27,6 @@ type JukeboxPlayer struct {
curTrackDuration float64
startTrackTime float64
startedAtUnixMilli int64
nextTrackTimer *time.Timer
}
func (j *JukeboxPlayer) SetVolume(vol int) error {