A decentralized music tracking and discovery platform built on AT Protocol 🎵

Remove timestamp from feed items in algos

+51 -204
+1 -4
apps/feeds/src/algos/afrobeat.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/afrobeats.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/alternative-metal.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/alternative-rnb.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/anime.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/art-pop.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/breakcore.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/chicago-drill.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/chillwave.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/country-hip-hop.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/crunk.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/dance-pop.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/deep-house.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/drill.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/dubstep.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/emo.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/grunge.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/hard-rock.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/heavy-metal.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/hip-hop.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/house.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/hyperpop.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/indie-rock.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/indie.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/j-pop.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/j-rock.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/jazz.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/k-pop.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/lo-fi.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/metal.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/metalcore.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/midwest-emo.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/nu-metal.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/pop-punk.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/post-grunge.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/rap-metal.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/rap.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/rnb.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/rock.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/southern-hip-hop.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/speedcore.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/swedish-pop.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/synthwave.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/thrash-metal.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/trap-soul.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/trap.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/tropical-house.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/vaporwave.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/visual-kei.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/vocaloid.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };
+1 -4
apps/feeds/src/algos/west-coast-hip-hop.ts
··· 29 29 .limit(limit) 30 30 .execute(); 31 31 32 - const feed = scrobbles.map(({ scrobbles }) => ({ 33 - scrobble: scrobbles.uri, 34 - timestamp: scrobbles.timestamp, 35 - })); 32 + const feed = scrobbles.map(({ scrobbles }) => ({ scrobble: scrobbles.uri })); 36 33 37 34 const { scrobbles: lastScrobble } = 38 35 scrobbles.length > 0 ? scrobbles.at(-1)! : { scrobbles: null };