From 485c3f02f5a75f574f4e1ba7fc68674cf5bf5baf Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Thu, 22 Dec 2022 00:41:47 +0100 Subject: [PATCH] macosx: Make VLCMediaLibraryGenre detailString the same as durationString, as they were practically the same Signed-off-by: Claudio Cambra --- modules/gui/macosx/library/VLCLibraryDataTypes.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gui/macosx/library/VLCLibraryDataTypes.m b/modules/gui/macosx/library/VLCLibraryDataTypes.m index dbf06b8899..a53e39ed32 100644 --- a/modules/gui/macosx/library/VLCLibraryDataTypes.m +++ b/modules/gui/macosx/library/VLCLibraryDataTypes.m @@ -498,7 +498,7 @@ static NSArray *fetchArtistsForLibraryItem(library_arti - (NSString *)detailString { - return [NSString stringWithFormat:_NS("%lli items"), _numberOfTracks]; + return [self durationString]; } - (NSString *)durationString