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
Exclude Various Artists from track lookup
tsiry-sandratraina.com
1 month ago
3c005794
385e93b9
+2
-2
2 changed files
expand all
collapse all
unified
split
crates
scrobbler
src
repo
track.rs
webscrobbler
src
repo
track.rs
+1
-1
crates/scrobbler/src/repo/track.rs
···
12
12
r#"
13
13
SELECT * FROM tracks
14
14
WHERE LOWER(title) = LOWER($1)
15
15
-
AND (LOWER(artist) = LOWER($2) OR LOWER(album_artist) = LOWER($2))
15
15
+
AND (LOWER(artist) = LOWER($2) OR LOWER(album_artist) = LOWER($2)) AND LOWER(album_artist) != 'various artists'
16
16
"#,
17
17
)
18
18
.bind(title)
+1
-1
crates/webscrobbler/src/repo/track.rs
···
12
12
r#"
13
13
SELECT * FROM tracks
14
14
WHERE LOWER(title) = LOWER($1)
15
15
-
AND (LOWER(artist) = LOWER($2) OR LOWER(album_artist) = LOWER($2))
15
15
+
AND (LOWER(artist) = LOWER($2) OR LOWER(album_artist) = LOWER($2)) AND LOWER(album_artist) != 'various artists'
16
16
"#,
17
17
)
18
18
.bind(title)