From 9e1daeb1656d1227f150a676058c84d11f6c1aa1 Mon Sep 17 00:00:00 2001 From: wutschel Date: Mon, 24 Feb 2025 21:21:30 +0100 Subject: [PATCH] Music playlist items shall only show song title and artist Let the 2nd row show "artist" only, not "album - artist" which often made the artist non-readable as the album name took all the available space. --- XBMC Remote/NowPlaying.m | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/XBMC Remote/NowPlaying.m b/XBMC Remote/NowPlaying.m index 664610508..c90319621 100644 --- a/XBMC Remote/NowPlaying.m +++ b/XBMC Remote/NowPlaying.m @@ -2076,10 +2076,7 @@ - (UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSI } else if ([item[@"type"] isEqualToString:@"song"] || [item[@"type"] isEqualToString:@"musicvideo"]) { - NSString *album = item[@"album"]; - NSString *artist = item[@"artist"]; - NSString *dash = album.length && artist.length ? @" - " : @""; - subLabel.text = [NSString stringWithFormat:@"%@%@%@", album, dash, artist]; + subLabel.text = item[@"artist"]; } else if ([item[@"type"] isEqualToString:@"movie"]) { subLabel.text = item[@"genre"];