Skip to content

Commit

Permalink
Feat(AutoPlaylist):Sync liked songs button
Browse files Browse the repository at this point in the history
  • Loading branch information
MaloyBegonia committed Feb 16, 2025
1 parent 1c982aa commit d9dabf6
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,18 @@ fun AutoPlaylistScreen(
}
}
}
if (playlistType == PlaylistType.LIKE) {
IconButton(
onClick = {
viewModel.syncLikedSongs()
}
) {
Icon(
painter = painterResource(R.drawable.sync),
contentDescription = null
)
}
}
IconButton(
onClick = {
playerConnection.addToQueue(
Expand Down

0 comments on commit d9dabf6

Please sign in to comment.