From 3d55c24f0f6fdc670ef39e088b8bc3fd35ad5886 Mon Sep 17 00:00:00 2001 From: Alan Date: Wed, 9 Aug 2023 17:20:40 +0800 Subject: [PATCH] stop queue if run out --- Notify.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Notify.php b/Notify.php index 5dd8a0b5..437e3550 100644 --- a/Notify.php +++ b/Notify.php @@ -257,8 +257,9 @@ class Pman_Core_Notify extends Pman if ($this->domain_queue !== false) { $this->queue = $this->remainingDomainQueue(); $this->domain_queue = false; + continue; } - continue; + break; // nothing more in queue.. and no remaining one } -- 2.39.2