resource/image: Fix "always false" condition

Found using gocritic linter.
This commit is contained in:
Iskander (Alex) Sharipov 2018-12-10 17:31:44 +03:00 committed by Bjørn Erik Pedersen
parent c84f506f8e
commit 256418917c

View file

@ -376,7 +376,7 @@ func parseImageConfig(config string) (imageConfig, error) {
if err != nil { if err != nil {
return c, err return c, err
} }
if c.Quality < 1 && c.Quality > 100 { if c.Quality < 1 || c.Quality > 100 {
return c, errors.New("quality ranges from 1 to 100 inclusive") return c, errors.New("quality ranges from 1 to 100 inclusive")
} }
} else if part[0] == 'r' { } else if part[0] == 'r' {