Added fix where containers were not checked for uniqueness.

CQTexperiment
vspader 2007-10-14 20:36:10 +00:00
parent 5084b555cb
commit 7494f04511
1 changed files with 3 additions and 0 deletions

View File

@ -198,6 +198,9 @@
if ([[self acceptableContainerTypes] containsObject:[[[url path] pathExtension] lowercaseString]]) {
if ([url isFileURL] ) {
[allURLs addObjectsFromArray:[AudioContainer urlsForContainerURL:url]];
//Make sure the container isn't added twice.
[uniqueURLs addObject:url];
}
}
else