We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09bd273 commit f4ccc75Copy full SHA for f4ccc75
codex-rs/tui/src/chatwidget/agent.rs
@@ -37,7 +37,10 @@ pub(crate) fn spawn_agent(
37
eprintln!("{message}");
38
app_event_tx_clone.send(AppEvent::CodexEvent(Event {
39
id: "".to_string(),
40
- msg: EventMsg::Error(ErrorEvent { message }),
+ msg: EventMsg::Error(ErrorEvent {
41
+ message,
42
+ http_status_code: None,
43
+ }),
44
}));
45
app_event_tx_clone.send(AppEvent::ExitRequest);
46
tracing::error!("failed to initialize codex: {err}");
0 commit comments