aboutsummaryrefslogtreecommitdiff
path: root/internal/scrobbler/scrobbler.go
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-08-29 09:29:07 -0700
committerFranck Cuny <franck@fcuny.net>2025-08-29 09:31:14 -0700
commitc7598b0ee2bf47d7a37c7189143749acc0491ade (patch)
treea827d9a066723a2d8763396745465dc26217af8d /internal/scrobbler/scrobbler.go
parentcheck returned error when running the scrobbler (diff)
downloadx-c7598b0ee2bf47d7a37c7189143749acc0491ade.tar.gz
don't check errors
Diffstat (limited to 'internal/scrobbler/scrobbler.go')
-rw-r--r--internal/scrobbler/scrobbler.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/scrobbler/scrobbler.go b/internal/scrobbler/scrobbler.go
index 694f9ff..8cb8f9e 100644
--- a/internal/scrobbler/scrobbler.go
+++ b/internal/scrobbler/scrobbler.go
@@ -89,7 +89,7 @@ func (s *Scrobbler) Run() error {
log.Printf("failed to update record %s: %s", previousRecord.Id, err)
}
previousRecord = currentRecord
- s.save(currentRecord)
+ _ = s.save(currentRecord)
}
}
}