mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 04:27:37 +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
1 changed files with 3 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue