Fix total time display on startup, when all metadata is correctly loaded.
parent
9b8f3a6ad2
commit
2a974d6704
|
@ -480,7 +480,11 @@ NSMutableDictionary * dictionaryWithPropertiesOfObject(id obj, NSArray * filterL
|
||||||
++i;
|
++i;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!i) return;
|
if (!i)
|
||||||
|
{
|
||||||
|
[playlistController performSelectorOnMainThread:@selector(updateTotalTime) withObject:nil waitUntilDone:NO];
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
NSLock *outLock = [[NSLock alloc] init];
|
NSLock *outLock = [[NSLock alloc] init];
|
||||||
NSMutableArray *outArray = [[NSMutableArray alloc] init];
|
NSMutableArray *outArray = [[NSMutableArray alloc] init];
|
||||||
|
|
Loading…
Reference in New Issue