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

Exclude Various Artists from track lookup

+2 -2
+1 -1
crates/scrobbler/src/repo/track.rs
··· 12 12 r#" 13 13 SELECT * FROM tracks 14 14 WHERE LOWER(title) = LOWER($1) 15 - AND (LOWER(artist) = LOWER($2) OR LOWER(album_artist) = LOWER($2)) 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 - AND (LOWER(artist) = LOWER($2) OR LOWER(album_artist) = LOWER($2)) 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)