From b38f03c0e7218762d90fa5092696b127f24f36db Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Sun, 25 Jan 2026 07:07:26 +0000
Subject: [PATCH] =Some logical flaws in Queue.php, Queue.js, ContentExecutor.php, UploadExecutor.php - particularly with timeline ordering, frontend queue updates, etc

---
 inc/integrations/Umami.php |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/inc/integrations/Umami.php b/inc/integrations/Umami.php
index 0fa280b..3c89b76 100644
--- a/inc/integrations/Umami.php
+++ b/inc/integrations/Umami.php
@@ -1,7 +1,7 @@
 <?php
 namespace JVBase\integrations;
 
-use JVBase\managers\CacheManager;
+use JVBase\managers\Cache;
 use WP_Error;
 use WP_Post;
 use Exception;
@@ -677,7 +677,7 @@
 		if ($data) {
 			// Clear cache for today
 			$cache_key = md5("analytics_{$today}_{$today}");
-			$this->cache->delete($cache_key);
+			$this->cache->forget($cache_key);
 
 			return [
 				'success' => true,

--
Gitblit v1.10.0