Don't show header when using ID3 tags

Signed-off-by: James Wells <james@jameswells.net>
This commit is contained in:
James Wells 2021-04-11 16:02:07 -04:00
parent 268a41d1f4
commit 3a1e2c96fc
No known key found for this signature in database
GPG Key ID: 7A9AB99C0B899FB7
1 changed files with 1 additions and 1 deletions

View File

@ -803,7 +803,7 @@ class SelectAlbumFragment : Fragment() {
private fun getAlbumList(albumListType: String, albumListTitle: Int, size: Int, offset: Int) {
showHeader = false
showSelectFolderHeader = !isOffline(context) &&
showSelectFolderHeader = !isOffline(context) && !Util.getShouldUseId3Tags(context) &&
(
(albumListType == AlbumListType.SORTED_BY_NAME.toString()) ||
(albumListType == AlbumListType.SORTED_BY_ARTIST.toString())