SaveSortingWithoutPerson

This commit is contained in:
2022-12-30 00:39:22 -07:00
parent 06a1207285
commit ec5a9098b8
15 changed files with 141 additions and 70 deletions

View File

@ -78,7 +78,7 @@ public class DeleteByDistinct
if (!fileTicksToNames.TryGetValue(checkDate.Ticks, out fileNames))
throw new Exception();
}
checkName = fileInfo.Name.ToLower(); //.Replace(".jpeg", ".jpg");
checkName = fileInfo.Name.ToLower().Replace(".jpeg", ".jpg");
if (fileNames.Contains(checkName))
deletedFiles.Add(file);
else