tangled
alpha
login
or
join now
rocksky.app
/
rocksky
96
fork
atom
A decentralized music tracking and discovery platform built on AT Protocol 🎵
rocksky.app
spotify
atproto
lastfm
musicbrainz
scrobbling
listenbrainz
96
fork
atom
overview
issues
7
pulls
pipelines
ignore conflict on sha256
tsiry-sandratraina.com
3 months ago
c29fa176
bdddbe98
+2
-2
2 changed files
expand all
collapse all
unified
split
crates
pgpull
src
repo
album.rs
artist.rs
+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
65
-
ON CONFLICT (xata_id) DO NOTHING"#,
65
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
40
-
ON CONFLICT (xata_id) DO NOTHING"#,
40
40
+
ON CONFLICT (sha256) DO NOTHING"#,
41
41
)
42
42
.bind(&artist.xata_id)
43
43
.bind(&artist.name)