From 0030628db1355ffd2c1d9cf497e26ae0a76b1b63 Mon Sep 17 00:00:00 2001 From: Gabe Farrell Date: Thu, 12 Jun 2025 02:42:27 -0400 Subject: [PATCH] fix: use utc time for maloja importer --- internal/importer/maloja.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/importer/maloja.go b/internal/importer/maloja.go index a4d1e53..b0a6d16 100644 --- a/internal/importer/maloja.go +++ b/internal/importer/maloja.go @@ -64,7 +64,7 @@ func ImportMalojaFile(ctx context.Context, store db.DB, filename string) error { l.Debug().Msg("Skipping invalid maloja import item") continue } - ts := time.Unix(item.Time, 0) + ts := time.Unix(item.Time, 0).UTC() opts := catalog.SubmitListenOpts{ MbzCaller: &mbz.MusicBrainzClient{}, Artist: item.Track.Artists[0],