From: Jaroslav Kysela Date: Wed, 12 Dec 2018 18:20:33 +0000 (+0100) Subject: imagecache: increase the save access threshold again X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=552cea0fc189f389ce02100bc49026ac1aae1715;p=thirdparty%2Ftvheadend.git imagecache: increase the save access threshold again --- diff --git a/src/imagecache.c b/src/imagecache.c index 4a818d347..e22ccab1c 100644 --- a/src/imagecache.c +++ b/src/imagecache.c @@ -68,7 +68,7 @@ static void imagecache_destroy(imagecache_image_t *img, int delconf); static inline time_t clkwrap(time_t clk) { - return clk / 4096; /* more than one hour */ + return clk / 8192; /* more than two hours */ } CLASS_DOC(imagecache)