request frames on all ipc receives

This commit is contained in:
Ryan Fleury
2025-06-21 09:57:25 -07:00
parent b6eca01e2a
commit 2595427189
2 changed files with 1 additions and 2 deletions
-2
View File
@@ -12798,12 +12798,10 @@ rd_frame(void)
}
rd_regs_fill_slot_from_string(cmd_kind_info->query.slot, cmd_kind_info->query.expr, primary_args_string);
rd_push_cmd(cmd_kind_name, rd_regs());
rd_request_frame();
}
else
{
log_user_errorf("`%S` is not a command.", cmd_kind_name);
rd_request_frame();
}
}break;
+1
View File
@@ -658,6 +658,7 @@ entry_point(CmdLine *cmd_line)
scratch_end(scratch);
}
rd_cmd(RD_CmdKind_RunExternalDriverTextCommand, .string = msg);
rd_request_frame();
}
}
}