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,
|
||||
|
||||
@@ -458,8 +458,7 @@ fun PlayerView(
|
||||
)
|
||||
|
||||
BasicText(
|
||||
text = playerState.mediaMetadata.extras?.getStringArrayList("artistNames")
|
||||
?.joinToString("") ?: "",
|
||||
text = playerState.mediaMetadata.artist?.toString() ?: "",
|
||||
style = typography.s.semiBold.secondary,
|
||||
maxLines = 1,
|
||||
overflow = TextOverflow.Ellipsis,
|
||||
|
||||
Reference in New Issue
Block a user