From 76f6e3f99445c7c8a9d271f8c48cd5038460a687 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Tue, 7 Jan 2020 21:57:05 +0000 Subject: [PATCH] Bug fix get_image_detail_with_cache() --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 4c83d8c..d397e86 100755 --- a/app.py +++ b/app.py @@ -724,7 +724,7 @@ def catalog_page(): title=title) def get_image_detail_with_cache(items, cache_name, thumbwidth=None, refresh=False): - filenames = [cur.image_filename() for cur in items] + filenames = [cur['image_filename'] for cur in items] if thumbwidth is None: thumbwidth = app.config['THUMBWIDTH']