From 6223e0d22e6b43ff9b0538a75485eeeb221440fa Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Sat, 9 Nov 2024 06:08:10 -0500 Subject: [PATCH] Increased the cache time --- www-api/app/Controllers/WrenchWallet.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www-api/app/Controllers/WrenchWallet.php b/www-api/app/Controllers/WrenchWallet.php index b02d6ab0..e9f7359d 100644 --- a/www-api/app/Controllers/WrenchWallet.php +++ b/www-api/app/Controllers/WrenchWallet.php @@ -264,7 +264,7 @@ class WrenchWallet extends BaseController $out = $this->APIcall('GET', $local_url, $in); if ( is_array($out['result_list']) && count($out['result_list']) > 0 ){ // dont cache empty $previous_wallet = true; - $this->saveCache($endpoint,$out,60); + $this->saveCache($endpoint,$out,180); } }