A decentralized music tracking and discovery platform built on AT Protocol 🎵
listenbrainz spotify atproto lastfm musicbrainz scrobbling

ignore conflict on sha256

Changed files
+2 -2
crates
pgpull
src
+1 -1
crates/pgpull/src/repo/album.rs
··· 62 62 artist_uri, 63 63 xata_createdat 64 64 ) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14) 65 - ON CONFLICT (xata_id) DO NOTHING"#, 65 + ON CONFLICT (sha256) DO NOTHING"#, 66 66 ) 67 67 .bind(&album.xata_id) 68 68 .bind(&album.title)
+1 -1
crates/pgpull/src/repo/artist.rs
··· 37 37 genres, 38 38 xata_createdat 39 39 ) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15) 40 - ON CONFLICT (xata_id) DO NOTHING"#, 40 + ON CONFLICT (sha256) DO NOTHING"#, 41 41 ) 42 42 .bind(&artist.xata_id) 43 43 .bind(&artist.name)