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/GoogleMyBusiness.php |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/inc/integrations/GoogleMyBusiness.php b/inc/integrations/GoogleMyBusiness.php
index c838f64..2e97d01 100644
--- a/inc/integrations/GoogleMyBusiness.php
+++ b/inc/integrations/GoogleMyBusiness.php
@@ -2,7 +2,6 @@
 namespace JVBase\integrations;
 
 use JVBase\meta\MetaManager;
-use JVBase\managers\CacheManager;
 use WP_Error;
 if (!defined('ABSPATH')) {
 	exit;
@@ -129,7 +128,9 @@
 			]
 		);
 
-//		$this->cache->clear();
+		if (JVB_TESTING) {
+			$this->cache->flush();
+		}
 	}
 
 	protected function initialize(): void
@@ -2274,7 +2275,7 @@
 	{
 		try {
 			// Use the static method to clear the entire cache group
-			$this->cache->clear();
+			$this->cache->flush();
 			return true;
 
 		} catch (\Exception $e) {

--
Gitblit v1.10.0