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

Default genres to empty list in get_artists

Stop reading genres from the DB row and return an empty list to avoid
deserialization errors

+1 -1
+1 -1
crates/analytics/src/handlers/artists.rs
··· 147 147 youtube_link: row.get(10)?, 148 148 apple_music_link: row.get(11)?, 149 149 uri: row.get(12)?, 150 - genres: row.get(13)?, 150 + genres: vec![], 151 151 play_count: row.get(14)?, 152 152 unique_listeners: row.get(15)?, 153 153 })