mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 12:37:37 +03:00
Fix polling of buffered scrobbles
This commit is contained in:
parent
0bbb54934b
commit
a3b8682d44
1 changed files with 6 additions and 2 deletions
|
@ -7,7 +7,6 @@ import (
|
|||
|
||||
"github.com/navidrome/navidrome/log"
|
||||
"github.com/navidrome/navidrome/model"
|
||||
"github.com/navidrome/navidrome/utils/pl"
|
||||
)
|
||||
|
||||
func newBufferedScrobbler(ds model.DataStore, s Scrobbler, service string) *bufferedScrobbler {
|
||||
|
@ -57,7 +56,12 @@ func (b *bufferedScrobbler) run(ctx context.Context) {
|
|||
b.sendWakeSignal()
|
||||
})
|
||||
}
|
||||
<-pl.ReadOrDone(ctx, b.wakeSignal)
|
||||
select {
|
||||
case <-b.wakeSignal:
|
||||
continue
|
||||
case <-ctx.Done():
|
||||
return
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue