aboutsummaryrefslogtreecommitdiff
path: root/src/Config.c
diff options
context:
space:
mode:
authorfrosty <gabriel@bwaaa.monster>2026-03-28 15:01:13 -0400
committerfrosty <gabriel@bwaaa.monster>2026-03-28 15:01:13 -0400
commit1b9187b1534992c0235dad064238b2d836489ca8 (patch)
treecdd7b7fd5c37a6ae2197ac6188607584de91893f /src/Config.c
parent86a9ebb90a2ac07d836c1408e3a15feb8615bd62 (diff)
downloadomnisearch-1b9187b1534992c0235dad064238b2d836489ca8.tar.gz
feat: changes to image proxy, proxy favicons
Diffstat (limited to 'src/Config.c')
-rw-r--r--src/Config.c2
1 files changed, 2 insertions, 0 deletions
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) {