diff options
author | daneren2005 <daneren2005@gmail.com> | 2013-06-07 10:48:28 -0600 |
---|---|---|
committer | daneren2005 <daneren2005@gmail.com> | 2013-06-07 10:48:28 -0600 |
commit | c90952369df0115eb2b94c6e5a4d7762c26e54b2 (patch) | |
tree | 720fd7bc88a6789bde2d701e3baf5ca340ba9398 /subsonic-android/src | |
parent | 998ff53d3eababf41785416a017dbee80d76fc68 (diff) | |
download | dsub-c90952369df0115eb2b94c6e5a4d7762c26e54b2.tar.gz dsub-c90952369df0115eb2b94c6e5a4d7762c26e54b2.tar.bz2 dsub-c90952369df0115eb2b94c6e5a4d7762c26e54b2.zip |
Use both artist and parent to cover old and madsonic at the same time
Diffstat (limited to 'subsonic-android/src')
-rw-r--r-- | subsonic-android/src/github/daneren2005/dsub/view/EntryAdapter.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subsonic-android/src/github/daneren2005/dsub/view/EntryAdapter.java b/subsonic-android/src/github/daneren2005/dsub/view/EntryAdapter.java index 6f8c7c71..ff7393c6 100644 --- a/subsonic-android/src/github/daneren2005/dsub/view/EntryAdapter.java +++ b/subsonic-android/src/github/daneren2005/dsub/view/EntryAdapter.java @@ -55,7 +55,7 @@ public class EntryAdapter extends ArrayAdapter<MusicDirectory.Entry> { MusicDirectory.Entry entry = getItem(position); if (entry.isDirectory()) { - if(entry.getArtist() != null) { + if(entry.getArtist() != null || entry.getParent() != null) { AlbumView view; view = new AlbumView(activity); view.setAlbum(entry, imageLoader); |