chore: added dialog to starred artists sync

This commit is contained in:
eddyizm 2025-09-27 21:52:04 -07:00
parent a547e19361
commit 3eb9b2fb5c
No known key found for this signature in database
GPG key ID: CF5F671829E8158A
2 changed files with 17 additions and 2 deletions

View file

@ -72,7 +72,6 @@ public class StarredArtistsSyncViewModel extends AndroidViewModel {
AtomicInteger remainingArtists = new AtomicInteger(artists.size());
for (ArtistID3 artist : artists) {
// Use the new callback-based method
artistRepository.getArtistAllSongs(artist.getId(), new ArtistRepository.ArtistSongsCallback() {
@Override
public void onSongsCollected(List<Child> songs) {