diff options
author | daneren2005 <daneren2005@gmail.com> | 2013-08-09 12:16:39 -0700 |
---|---|---|
committer | daneren2005 <daneren2005@gmail.com> | 2013-08-09 12:16:39 -0700 |
commit | 0ea6895860c9c8f721bae412cce353299a9ef3cc (patch) | |
tree | d2970e6c1134058fbac6dbe10b60de85f4fe7239 /src/github | |
parent | cd72cc2b1c2145a83d819d4a682bd3ede1024d5d (diff) | |
download | dsub-0ea6895860c9c8f721bae412cce353299a9ef3cc.tar.gz dsub-0ea6895860c9c8f721bae412cce353299a9ef3cc.tar.bz2 dsub-0ea6895860c9c8f721bae412cce353299a9ef3cc.zip |
Go back to putting album in since now RemoteControlClient is used for other stuff
Diffstat (limited to 'src/github')
-rw-r--r-- | src/github/daneren2005/dsub/util/compat/RemoteControlClientICS.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/github/daneren2005/dsub/util/compat/RemoteControlClientICS.java b/src/github/daneren2005/dsub/util/compat/RemoteControlClientICS.java index b357dfbf..732f96da 100644 --- a/src/github/daneren2005/dsub/util/compat/RemoteControlClientICS.java +++ b/src/github/daneren2005/dsub/util/compat/RemoteControlClientICS.java @@ -62,7 +62,7 @@ public class RemoteControlClientICS extends RemoteControlClientHelper { // Update the remote controls mRemoteControl.editMetadata(true) .putString(MediaMetadataRetriever.METADATA_KEY_ARTIST, (currentSong == null) ? null : currentSong.getArtist()) - .putString(MediaMetadataRetriever.METADATA_KEY_ALBUM, (currentSong == null) ? null : currentSong.getArtist()) + .putString(MediaMetadataRetriever.METADATA_KEY_ALBUM, (currentSong == null) ? null : currentSong.getAlbum()) .putString(MediaMetadataRetriever.METADATA_KEY_ALBUMARTIST, (currentSong == null) ? null : currentSong.getArtist()) .putString(MediaMetadataRetriever.METADATA_KEY_TITLE, (currentSong) == null ? null : currentSong.getTitle()) .putString(MediaMetadataRetriever.METADATA_KEY_GENRE, (currentSong) == null ? null : currentSong.getGenre()) |