From da573d0a9ddbc33993f461d0ab0372982ce0d866 Mon Sep 17 00:00:00 2001 From: Ivan Carlos Date: Wed, 21 Jan 2026 20:37:35 -0300 Subject: [PATCH] update --- plugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.php b/plugin.php index 69aa46f..8c86a2a 100755 --- a/plugin.php +++ b/plugin.php @@ -639,7 +639,7 @@ function icc_upload_and_shorten_local_file_manager($dir, $url) $path = rtrim($temp_dir, '/') . '/' . $file; if (is_dir($path) && strpos($file, 'icc_temp_') === 0) { // Check age (1 hour = 3600 seconds) - if (filemtime($path) < (time() - 3600)) { + if (filemtime($path) < (time() - 86400)) { icc_rrmdir($path); } }