tangled
alpha
login
or
join now
t1c.dev
/
rocksky
forked from
rocksky.app/rocksky
2
fork
atom
A decentralized music tracking and discovery platform built on AT Protocol 🎵
2
fork
atom
overview
issues
pulls
pipelines
Merge branch 'main' into feat/feed-generator
tsiry-sandratraina.com
3 months ago
e4969626
bfc5c935
+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)