Better fix for edit photo exception

face-detect
Noah Petherbridge 2023-07-22 14:53:57 -07:00
parent 27fc1c58dd
commit 271af4e9a2
1 changed files with 0 additions and 4 deletions

View File

@ -241,10 +241,6 @@ func ParseCropCoords(coords string) []int {
}
}
// If either the width or height would be zero, the coords aren't valid.
if len(coords) == 4 && coords[2] == 0 || coords[3] == 0 {
return nil
}
return crop
}