assembleFrameReq: fix bug where we don't CB before ret

This commit is contained in:
2025-11-13 20:57:10 -04:00
parent 16a74a3eb0
commit d01f06904a
@@ -474,7 +474,10 @@ public:
SpinLock::Guard lock(context->engine.isAssemblingLock);
if (!context->engine.isAssembling)
{ return; }
{
context->callOriginalCallback(false, context->loop);
return;
}
// Set timer fired flag
context->timerFired.store(true);