Reflect database migration
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user