aboutsummaryrefslogtreecommitdiff
path: root/subsonic-android/src
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2013-06-10 06:20:04 -0700
committerScott Jackson <daneren2005@gmail.com>2013-06-10 06:20:04 -0700
commit1fc1da5a19567eefe888347042edb0cbbf696d27 (patch)
treea7931ea150fa88d73e2819d88837272b1fde325e /subsonic-android/src
parent8f63b70e89996ab44b5949e47d389888cf819981 (diff)
downloaddsub-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')
-rw-r--r--subsonic-android/src/github/daneren2005/dsub/util/compat/RemoteControlClientICS.java3
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()))