From d9eca5d7b11299ac0faf5da300b418e3489b70c9 Mon Sep 17 00:00:00 2001 From: whale Date: Sun, 10 May 2020 18:31:44 +0800 Subject: [PATCH] fix finalReply not working --- src/ZM/Context/Context.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ZM/Context/Context.php b/src/ZM/Context/Context.php index 41ae852a..8c89551b 100644 --- a/src/ZM/Context/Context.php +++ b/src/ZM/Context/Context.php @@ -112,7 +112,7 @@ class Context implements ContextInterface } public function finalReply($msg, $yield = false) { - ZMBuf::$context[$this->cid]["block_continue"] = true; + ZMBuf::$context[$this->cid]["cache"]["block_continue"] = true; if ($msg == "") return true; return $this->reply($msg, $yield); }