From 2c887905be8f6b32b8968662d5755323651ff5c4 Mon Sep 17 00:00:00 2001 From: Alan Date: Fri, 27 May 2022 12:29:50 +0800 Subject: [PATCH] core notify use correct unique key to to multiple runs --- Notify.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Notify.php b/Notify.php index 46f7e8fa..514ae7f1 100644 --- a/Notify.php +++ b/Notify.php @@ -132,7 +132,7 @@ class Pman_Core_Notify extends Pman if (!$ff->cli) { die("access denied"); } - HTML_FlexyFramework::ensureSingle($_SERVER["SCRIPT_NAME"] .'|'. __FILE__, $this); + HTML_FlexyFramework::ensureSingle($_SERVER["SCRIPT_NAME"] .'|'. __FILE__ .'|'. (empty($_SERVER['argv'][1]) ? '': $_SERVER['argv'][1]), $this); return true; } -- 2.39.2