Added fix where containers were not checked for uniqueness.

This commit is contained in:
vspader 2007-10-14 20:36:10 +00:00
parent 5084b555cb
commit 7494f04511

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