diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-08-29 09:29:07 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-08-29 09:31:14 -0700 |
| commit | c7598b0ee2bf47d7a37c7189143749acc0491ade (patch) | |
| tree | a827d9a066723a2d8763396745465dc26217af8d /internal/mpd/mpd.go | |
| parent | check returned error when running the scrobbler (diff) | |
| download | x-c7598b0ee2bf47d7a37c7189143749acc0491ade.tar.gz | |
don't check errors
Diffstat (limited to 'internal/mpd/mpd.go')
| -rw-r--r-- | internal/mpd/mpd.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/mpd/mpd.go b/internal/mpd/mpd.go index 5b57ee4..57714c7 100644 --- a/internal/mpd/mpd.go +++ b/internal/mpd/mpd.go @@ -30,7 +30,7 @@ func NewPlayer(net string, addr string) (*Player, error) { go func() { for range time.Tick(30 * time.Second) { - p.Client.Ping() + _ = p.Client.Ping() } }() |
