From 17020e519295b021ff3419cfa8b43b2766c7f3bb Mon Sep 17 00:00:00 2001 From: eddyizm Date: Sat, 27 Dec 2025 17:48:06 -0800 Subject: [PATCH] wip: album tracks working, album bottom sheet only pulling in the album, not quite right --- .../cappielloantonio/tempo/repository/AlbumRepository.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 fd47c7cf..dd1a6401 100644 --- a/app/src/main/java/com/cappielloantonio/tempo/repository/AlbumRepository.java +++ b/app/src/main/java/com/cappielloantonio/tempo/repository/AlbumRepository.java @@ -12,7 +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 com.cappielloantonio.tempo.util.Constants.SeedType; import java.util.ArrayList; import java.util.Calendar; @@ -209,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(), Constants.SEEDTYPE.ALBUM, count, songs -> { + new SongRepository().getInstantMix(album.getId(), SeedType.ALBUM, count, songs -> { if (songs != null && !songs.isEmpty()) { callback.onLoadMedia(songs);