aboutsummaryrefslogtreecommitdiff
path: root/subsonic-android
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2013-03-14 21:02:11 -0700
committerScott Jackson <daneren2005@gmail.com>2013-03-14 21:02:11 -0700
commitc0feea2f650c453c51cb04168c28dce4a47bdd5e (patch)
tree63ea8da5492e16510b17afb88dc5cea17d8bde44 /subsonic-android
parentfd5c4cb01d2f49bfa7b64941f30f8ef706f33cd6 (diff)
downloaddsub-c0feea2f650c453c51cb04168c28dce4a47bdd5e.tar.gz
dsub-c0feea2f650c453c51cb04168c28dce4a47bdd5e.tar.bz2
dsub-c0feea2f650c453c51cb04168c28dce4a47bdd5e.zip
Display Artist instead of album on lockscreen widget
Diffstat (limited to 'subsonic-android')
-rw-r--r--subsonic-android/src/github/daneren2005/dsub/util/compat/RemoteControlClientICS.java2
1 files changed, 1 insertions, 1 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 e6528d1b..52361fd4 100644
--- a/subsonic-android/src/github/daneren2005/dsub/util/compat/RemoteControlClientICS.java
+++ b/subsonic-android/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.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()))