From ae5652ffb92e2388c8814f6581b54070a7625a52 Mon Sep 17 00:00:00 2001 From: sladro Date: Tue, 13 Jan 2026 21:17:02 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=84=E8=8C=83=E4=BC=98=E5=8C=966=EF=BC=8C?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E7=BC=96=E8=AF=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/gate/gate_node.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/gate/gate_node.cpp b/plugins/gate/gate_node.cpp index 5082be7..611aef0 100644 --- a/plugins/gate/gate_node.cpp +++ b/plugins/gate/gate_node.cpp @@ -190,7 +190,7 @@ private: void PushToDownstream(FramePtr frame) { for (auto& q : ctx_.output_queues) { if (!q) continue; - q->push(frame); + q->Push(frame); } }