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"];