From 0c803f15a5253dc037893cd8cd5183ba511d3767 Mon Sep 17 00:00:00 2001 From: Patrick Robertson Date: Tue, 31 Dec 2024 09:29:31 +0100 Subject: [PATCH] Fix showing preview images in the .html file when using local storage Local storage media urls are prefixed with '/', previously only http(s) media preview src were displayed --- src/auto_archiver/formatters/templates/macros.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auto_archiver/formatters/templates/macros.html b/src/auto_archiver/formatters/templates/macros.html index c2281c2..c187f8c 100644 --- a/src/auto_archiver/formatters/templates/macros.html +++ b/src/auto_archiver/formatters/templates/macros.html @@ -3,7 +3,7 @@ {% for url in m.urls %} {% if url | length == 0 %} No URL available for {{ m.key }}. -{% elif 'http' in url %} +{% elif 'http://' in url or 'https://' in url or url.startswith('/') %} {% if 'image' in m.mimetype %}