Fixed broken window title display when no artist tag is found
parent
a02859a3fc
commit
6873a2730b
|
@ -278,9 +278,8 @@
|
|||
|
||||
- (NSString *)display
|
||||
{
|
||||
if ([[self artist] isEqualToString:@""]) {
|
||||
return title;
|
||||
}
|
||||
if ((artist == NULL) || ([[self artist] isEqualToString:@""]))
|
||||
return title;
|
||||
else {
|
||||
return [NSString stringWithFormat:@"%@ - %@", artist, title];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue