From c5f8a9b0c9f9af95b191698a42b17fae878c0283 Mon Sep 17 00:00:00 2001 From: Scott Jackson Date: Wed, 4 Mar 2015 09:48:43 -0800 Subject: Fix broken rotate --- src/github/daneren2005/dsub/fragments/SelectDirectoryFragment.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/github/daneren2005/dsub/fragments/SelectDirectoryFragment.java b/src/github/daneren2005/dsub/fragments/SelectDirectoryFragment.java index 515a6cd4..85c32af0 100644 --- a/src/github/daneren2005/dsub/fragments/SelectDirectoryFragment.java +++ b/src/github/daneren2005/dsub/fragments/SelectDirectoryFragment.java @@ -719,7 +719,7 @@ public class SelectDirectoryFragment extends SubsonicFragment implements Adapter // Show header if not album list type and not root and not artist // For Subsonic 5.1+ display a header for artists with getArtistInfo data if it exists View header = null; - if(albumListType == null && !"root".equals(id) && (!artist || artistInfo != null) && entryAdapter == null) { + if(albumListType == null && !"root".equals(id) && (!artist || artistInfo != null)) { header = createHeader(); // Only add header to entry list if we aren't going recreate album grid as root anyways if(header != null && entryList != null && (!addAlbumHeader || entries.size() > 0)) { @@ -729,7 +729,7 @@ public class SelectDirectoryFragment extends SubsonicFragment implements Adapter } // Needs to be added here, GB crashes if you to try to remove the header view before adapter is set - if(addAlbumHeader && entryAdapter == null) { + if(addAlbumHeader) { if(entries.size() > 0 || playlistId != null || podcastId != null) { entryList.addHeaderView(albumList); } else { -- cgit v1.2.3