From 1b9187b1534992c0235dad064238b2d836489ca8 Mon Sep 17 00:00:00 2001 From: frosty Date: Sat, 28 Mar 2026 15:01:13 -0400 Subject: feat: changes to image proxy, proxy favicons --- src/Config.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/Config.c') diff --git a/src/Config.c b/src/Config.c index 0c243bd..0c3fc1c 100644 --- a/src/Config.c +++ b/src/Config.c @@ -92,6 +92,8 @@ int load_config(const char *filename, Config *config) { config->cache_ttl_search = atoi(value); } else if (strcmp(key, "ttl_infobox") == 0) { config->cache_ttl_infobox = atoi(value); + } else if (strcmp(key, "ttl_image") == 0) { + config->cache_ttl_image = atoi(value); } } else if (strcmp(section, "engines") == 0) { if (strcmp(key, "engines") == 0) { -- cgit v1.2.3