mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-17 21:01:26 +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 {
|
||||
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")
|
||||
}
|
||||
} else if part[0] == 'r' {
|
||||
|
Reference in New Issue
Block a user