diff options
author | pacien | 2020-01-05 10:43:30 +0100 |
---|---|---|
committer | pacien | 2020-01-05 10:43:30 +0100 |
commit | 1a0f4b17fc77c4b330c43185a15230e67116a3aa (patch) | |
tree | 4eed3493dfc9a195eacdd634bf58f9b7fc262e1d /compiler/src/Compiler.hs | |
parent | 7da7ae1848a23b13ec4b258fd9e714c0f4943850 (diff) | |
download | ldgallery-1a0f4b17fc77c4b330c43185a15230e67116a3aa.tar.gz |
compiler: rename max thumbnail size option
Diffstat (limited to 'compiler/src/Compiler.hs')
-rw-r--r-- | compiler/src/Compiler.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/src/Compiler.hs b/compiler/src/Compiler.hs index 0132b1a..4f2093b 100644 --- a/compiler/src/Compiler.hs +++ b/compiler/src/Compiler.hs | |||
@@ -106,7 +106,7 @@ compileGallery inputDirPath outputDirPath rebuildAll = | |||
106 | let cache = if invalidateCache || rebuildAll then skipCached else withCached | 106 | let cache = if invalidateCache || rebuildAll then skipCached else withCached |
107 | 107 | ||
108 | let itemProc = itemProcessor (pictureMaxResolution config) cache | 108 | let itemProc = itemProcessor (pictureMaxResolution config) cache |
109 | let thumbnailProc = thumbnailProcessor (thumbnailResolution config) cache | 109 | let thumbnailProc = thumbnailProcessor (thumbnailMaxResolution config) cache |
110 | let galleryBuilder = buildGalleryTree dirProcessor itemProc thumbnailProc (implicitDirectoryTag config) | 110 | let galleryBuilder = buildGalleryTree dirProcessor itemProc thumbnailProc (implicitDirectoryTag config) |
111 | resources <- galleryBuilder (galleryName config) inputTree | 111 | resources <- galleryBuilder (galleryName config) inputTree |
112 | 112 | ||