From 844b57054b40629df061f0098c5bca73b8b44a7c Mon Sep 17 00:00:00 2001 From: eddyizm Date: Sat, 27 Dec 2025 12:31:01 -0800 Subject: [PATCH] wip: updated album repo for song instant mix type update --- .../com/cappielloantonio/tempo/repository/AlbumRepository.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/main/java/com/cappielloantonio/tempo/repository/AlbumRepository.java b/app/src/main/java/com/cappielloantonio/tempo/repository/AlbumRepository.java index 7de91d18..fd47c7cf 100644 --- a/app/src/main/java/com/cappielloantonio/tempo/repository/AlbumRepository.java +++ b/app/src/main/java/com/cappielloantonio/tempo/repository/AlbumRepository.java @@ -12,6 +12,7 @@ import com.cappielloantonio.tempo.subsonic.base.ApiResponse; import com.cappielloantonio.tempo.subsonic.models.AlbumID3; import com.cappielloantonio.tempo.subsonic.models.AlbumInfo; import com.cappielloantonio.tempo.subsonic.models.Child; +import com.cappielloantonio.tempo.util.Constants; import java.util.ArrayList; import java.util.Calendar; @@ -208,7 +209,7 @@ public class AlbumRepository { public void getInstantMix(AlbumID3 album, int count, final MediaCallback callback) { Log.d("AlbumRepository", "Starting Instant Mix for album: " + album.getName()); - new SongRepository().getInstantMix(album.getId(), count, songs -> { + new SongRepository().getInstantMix(album.getId(), Constants.SEEDTYPE.ALBUM, count, songs -> { if (songs != null && !songs.isEmpty()) { callback.onLoadMedia(songs);