mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
fix bug in jukebox: property unavailable (#3024)
* fix bug in jukebox: property unavailable * fix lint error
This commit is contained in:
parent
45c4583f1b
commit
de0a08915c
1 changed files with 2 additions and 2 deletions
|
@ -150,7 +150,8 @@ func (t *MpvTrack) Position() int {
|
|||
if retryCount > 5 {
|
||||
return 0
|
||||
}
|
||||
break
|
||||
time.Sleep(time.Duration(retryCount) * time.Millisecond)
|
||||
continue
|
||||
}
|
||||
|
||||
if err != nil {
|
||||
|
@ -166,7 +167,6 @@ func (t *MpvTrack) Position() int {
|
|||
return int(pos)
|
||||
}
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (t *MpvTrack) SetPosition(offset int) error {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue