Reflect database migration

This commit is contained in:
vfsfitvnm
2022-06-29 15:24:00 +02:00
parent 6f5bc02216
commit 95879e7a6e
3 changed files with 7 additions and 9 deletions

View File

@@ -97,9 +97,8 @@ fun ArtistScreen(
}
val songs by remember(browseId) {
flowOf(emptyList<DetailedSong>())
// Database.artistSongs(browseId)
}.collectAsState(initial = emptyList<DetailedSong>(), context = Dispatchers.IO)
Database.artistSongs(browseId)
}.collectAsState(initial = emptyList(), context = Dispatchers.IO)
LazyColumn(
state = lazyListState,