02-23-2020, 02:40 PM
(09-05-2019, 09:31 PM)deztiny Wrote: In version 6 this part code has been rewritten and needs to be changed:
up to 5:
$album = $flatData['Album'] ? $flatData['Date'] . ' - ' . $flatData['Album'] : 'Unknown';
6 and newer (I guess):
'album' => ($flatData['Album'] ? $flatData['Date'] . ' - ' . $flatData['Album'] : 'Unknown'),
I've implemented this on my library but I'd rather the date didn't actually appear before the album title in the Albums By Artist view.
Is it possible to still have the chronological artist discography sort active without the date appearing in front of the album name in this view?