Fix a range error exception
This commit is contained in:
parent
356f94698f
commit
27fc1c58dd
|
@ -242,7 +242,7 @@ func ParseCropCoords(coords string) []int {
|
||||||
}
|
}
|
||||||
|
|
||||||
// If either the width or height would be zero, the coords aren't valid.
|
// If either the width or height would be zero, the coords aren't valid.
|
||||||
if coords[2] == 0 || coords[3] == 0 {
|
if len(coords) == 4 && coords[2] == 0 || coords[3] == 0 {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
return crop
|
return crop
|
||||||
|
|
Loading…
Reference in New Issue
Block a user