Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'resource/image_cache.go')
-rw-r--r--resource/image_cache.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/resource/image_cache.go b/resource/image_cache.go
index 22c86ea32..8cc626caf 100644
--- a/resource/image_cache.go
+++ b/resource/image_cache.go
@@ -75,7 +75,7 @@ func (c *imageCache) getOrCreate(
parent *Image, conf imageConfig, createImage func() (*Image, image.Image, error)) (*Image, error) {
relTarget := parent.relTargetPathFromConfig(conf)
- key := parent.relTargetPathForRel(relTarget.path(), false, false)
+ key := parent.relTargetPathForRel(relTarget.path(), false, false, false)
// First check the in-memory store, then the disk.
c.mu.RLock()