diff --git a/Sources/VLDocument.mm b/Sources/VLDocument.mm index a5026cc..9cafedb 100644 --- a/Sources/VLDocument.mm +++ b/Sources/VLDocument.mm @@ -565,4 +565,12 @@ [self didChangeSong]; } +- (NSString *) displayName +{ + if ([songTitle isEqual:@""]) + return [super displayName]; + else + return songTitle; +} + @end