From a63dc3d875f00080c43074b6e0328064a6fce22c Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Fri, 21 Jan 2022 10:11:10 -0800 Subject: mpd: we only want events from the player subsystem Store the name of the subsystem in a constant, add some comments on where to find the list. --- tools/mpd-stats/internal/scrobbler/scrobbler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/mpd-stats/internal/scrobbler') diff --git a/tools/mpd-stats/internal/scrobbler/scrobbler.go b/tools/mpd-stats/internal/scrobbler/scrobbler.go index f0f9d0e..eb4eb9c 100644 --- a/tools/mpd-stats/internal/scrobbler/scrobbler.go +++ b/tools/mpd-stats/internal/scrobbler/scrobbler.go @@ -44,7 +44,7 @@ func (s *Scrobbler) Run() error { for { e := <-s.player.Watcher.Event - if e != "" { + if e == mpd.SubSystemPlayer { status, err := s.player.Client.Status() if err != nil { log.Printf("could not read the status: %v", err) -- cgit 1.4.1