mirror of
https://github.com/openai/codex.git
synced 2026-09-09 15:58:47 +00:00
fixes
This commit is contained in:
@@ -746,7 +746,6 @@ impl MessageProcessor {
|
||||
self.outgoing.send_error(connection_request_id, error).await;
|
||||
return;
|
||||
}
|
||||
let connection_id = connection_request_id.connection_id;
|
||||
if self.config.features.enabled(Feature::GeneralAnalytics)
|
||||
&& let ClientRequest::TurnStart { request_id, .. }
|
||||
| ClientRequest::TurnSteer { request_id, .. } = &codex_request
|
||||
|
||||
@@ -5342,7 +5342,12 @@ impl App {
|
||||
let should_apply_result = if let Some(queued_enabled) = queued_enabled
|
||||
&& (result.is_err() || queued_enabled != enabled)
|
||||
{
|
||||
self.spawn_plugin_enabled_write(app_server, cwd, plugin_id, queued_enabled);
|
||||
self.spawn_plugin_enabled_write(
|
||||
app_server,
|
||||
cwd.clone(),
|
||||
plugin_id.clone(),
|
||||
queued_enabled,
|
||||
);
|
||||
false
|
||||
} else {
|
||||
true
|
||||
@@ -9897,6 +9902,7 @@ guardian_approval = true
|
||||
primary_session_configured: None,
|
||||
pending_primary_events: VecDeque::new(),
|
||||
pending_app_server_requests: PendingAppServerRequests::default(),
|
||||
pending_plugin_enabled_writes: HashMap::new(),
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9954,6 +9960,7 @@ guardian_approval = true
|
||||
primary_session_configured: None,
|
||||
pending_primary_events: VecDeque::new(),
|
||||
pending_app_server_requests: PendingAppServerRequests::default(),
|
||||
pending_plugin_enabled_writes: HashMap::new(),
|
||||
},
|
||||
rx,
|
||||
op_rx,
|
||||
|
||||
@@ -262,6 +262,7 @@ impl ChatWidget {
|
||||
let view = CustomPromptView::new(
|
||||
"Add marketplace".to_string(),
|
||||
"owner/repo, git URL, or local marketplace path".to_string(),
|
||||
String::new(),
|
||||
Some("Examples: owner/repo, git URL, ./marketplace".to_string()),
|
||||
Box::new(move |source: String| {
|
||||
let source = source.trim().to_string();
|
||||
|
||||
Reference in New Issue
Block a user