This commit is contained in:
2023-12-25 17:19:24 -07:00
parent 7007a9df2e
commit 6909146d90
2 changed files with 12 additions and 14 deletions

View File

@ -84,10 +84,8 @@ internal abstract class PersonContainer
continue;
fileHolder = IFileHolder.Get(file);
filePath = FilePath.Get(propertyConfiguration, fileHolder, index: null);
if (filePath.Id is null )
continue;
wholePercentages = IMapping.GetWholePercentages(facesFileNameExtension, filePath);
if (wholePercentages is null)
if (filePath.Id is not null && wholePercentages is not null)
continue;
checkDirectory = Path.GetDirectoryName(file);
if (string.IsNullOrEmpty(checkDirectory))