mirror of
https://github.com/gohugoio/hugoDocs.git
synced 2025-09-14 13:14:41 -04:00
tpl/images: Fix error handling in Config
This commit is contained in:
parent
58d4c25e50
commit
405c2f6899
@ -70,10 +70,13 @@ func (ns *Namespace) Config(path interface{}) (image.Config, error) {
|
||||
}
|
||||
|
||||
config, _, err = image.DecodeConfig(f)
|
||||
if err != nil {
|
||||
return config, err
|
||||
}
|
||||
|
||||
ns.cacheMu.Lock()
|
||||
ns.cache[filename] = config
|
||||
ns.cacheMu.Unlock()
|
||||
|
||||
return config, err
|
||||
return config, nil
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user