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

fix: increase retry limit for submitting listens from 5 to 15

Changed files
+1 -1
crates
scrobbler
src
listenbrainz
core
+1 -1
crates/scrobbler/src/listenbrainz/core/submit.rs
··· 27 27 }))); 28 28 } 29 29 30 - const RETRIES: usize = 5; 30 + const RETRIES: usize = 15; 31 31 for attempt in 1..=RETRIES { 32 32 match scrobble_listenbrainz(pool, cache, &payload, token).await { 33 33 Ok(_) => {