mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-13 10:47:19 +03:00
Guard against missing active track (#2996)
Co-authored-by: Deluan Quintão <deluan@navidrome.org>
This commit is contained in:
parent
b3d70e9264
commit
ff8dca5abe
@ -269,7 +269,9 @@ func (pd *playbackDevice) trackSwitcherGoroutine() {
|
||||
if err != nil {
|
||||
log.Error("Error switching track", err)
|
||||
}
|
||||
pd.ActiveTrack.Unpause()
|
||||
if pd.ActiveTrack != nil {
|
||||
pd.ActiveTrack.Unpause()
|
||||
}
|
||||
} else {
|
||||
log.Debug("There is no song left in the playlist. Finish.")
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user