diff options
author | Scott Jackson <daneren2005@gmail.com> | 2013-06-10 06:20:04 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2013-06-10 06:20:04 -0700 |
commit | 1fc1da5a19567eefe888347042edb0cbbf696d27 (patch) | |
tree | a7931ea150fa88d73e2819d88837272b1fde325e /subsonic-android/src/github | |
parent | 8f63b70e89996ab44b5949e47d389888cf819981 (diff) | |
download | dsub-1fc1da5a19567eefe888347042edb0cbbf696d27.tar.gz dsub-1fc1da5a19567eefe888347042edb0cbbf696d27.tar.bz2 dsub-1fc1da5a19567eefe888347042edb0cbbf696d27.zip |
Tested and it doesn't appear to be so for all devices (with this change Artist still showed up on the lockscreen for me)
Diffstat (limited to 'subsonic-android/src/github')
-rw-r--r-- | subsonic-android/src/github/daneren2005/dsub/util/compat/RemoteControlClientICS.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/subsonic-android/src/github/daneren2005/dsub/util/compat/RemoteControlClientICS.java b/subsonic-android/src/github/daneren2005/dsub/util/compat/RemoteControlClientICS.java index 50989468..a8fed63d 100644 --- a/subsonic-android/src/github/daneren2005/dsub/util/compat/RemoteControlClientICS.java +++ b/subsonic-android/src/github/daneren2005/dsub/util/compat/RemoteControlClientICS.java @@ -62,8 +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_ALBUMARTIST, (currentSong == null) ? null : currentSong.getArtist()) - .putString(MediaMetadataRetriever.METADATA_KEY_ALBUM, (currentSong == null) ? null : currentSong.getAlbum()) + .putString(MediaMetadataRetriever.METADATA_KEY_ALBUM, (currentSong == null) ? null : currentSong.getArtist()) .putString(MediaMetadataRetriever.METADATA_KEY_TITLE, (currentSong) == null ? null : currentSong.getTitle()) .putLong(MediaMetadataRetriever.METADATA_KEY_DURATION, (currentSong == null) ? 0 : ((currentSong.getDuration() == null) ? 0 : currentSong.getDuration())) |