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
Match R&B genre in artists filter
tsiry-sandratraina.com
2 months ago
60f15269
6ed32ef2
+1
-1
1 changed file
expand all
collapse all
unified
split
apps
feeds
src
algos
rnb.ts
+1
-1
apps/feeds/src/algos/rnb.ts
···
10
10
) => {
11
11
const { limit = 50, cursor } = params;
12
12
13
13
-
const whereConditions = [arrayContains(schema.artists.genres, ["rnb"])];
13
13
+
const whereConditions = [arrayContains(schema.artists.genres, ["r&b"])];
14
14
15
15
if (cursor) {
16
16
const cursorDate = new Date(parseInt(cursor, 10));