mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-23 21:53:09 +02:00
resource/image: Fix "always false" condition
Found using gocritic linter.
This commit is contained in:
committed by
Bjørn Erik Pedersen
parent
c84f506f8e
commit
256418917c
@@ -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' {
|
||||||
|
Reference in New Issue
Block a user