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

Configure Feed

Select the types of activity you want to include in your feed.

refactor: streamline sync_scrobbles function by removing redundant code and improving readability

+1 -1
+1 -1
crates/feed/src/sync.rs
··· 5 5 use sqlx::postgres::{PgPoolOptions, PgRow}; 6 6 use sqlx::Row; 7 7 8 - use crate::repo::{duckdb::DuckdbRepo, Repo, RepoImpl}; 8 + use crate::repo::{Repo, RepoImpl}; 9 9 use crate::types::ScrobbleRecord; 10 10 11 11 pub async fn sync_scrobbles(ddb: RepoImpl) -> Result<(), Error> {