Skip to content

Commit 0030628

Browse files
committed
fix: use utc time for maloja importer
1 parent d717396 commit 0030628

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/importer/maloja.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ func ImportMalojaFile(ctx context.Context, store db.DB, filename string) error {
6464
l.Debug().Msg("Skipping invalid maloja import item")
6565
continue
6666
}
67-
ts := time.Unix(item.Time, 0)
67+
ts := time.Unix(item.Time, 0).UTC()
6868
opts := catalog.SubmitListenOpts{
6969
MbzCaller: &mbz.MusicBrainzClient{},
7070
Artist: item.Track.Artists[0],

0 commit comments

Comments
 (0)