Skip to content

Commit

Permalink
Fixed artist,song order
Browse files Browse the repository at this point in the history
  • Loading branch information
theothernt committed Jul 7, 2024
1 parent f8d7114 commit b532af2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class NowPlayingService(private val context: Context, private val prefs: General
if (metadata != null) {
val song = metadata.getString(MediaMetadata.METADATA_KEY_TITLE)
val artist = metadata.getString(MediaMetadata.METADATA_KEY_ARTIST)
trackInfo = Pair(song, artist)
trackInfo = Pair(artist, song)
}

active.let {
Expand Down

0 comments on commit b532af2

Please sign in to comment.