From de49d76f42ea99aa604d39762a85f1b5180a011a Mon Sep 17 00:00:00 2001 From: xli-oai Date: Fri, 15 May 2026 02:57:25 -0700 Subject: [PATCH] Rename remote installed plugin cache mapper --- codex-rs/core-plugins/src/remote.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codex-rs/core-plugins/src/remote.rs b/codex-rs/core-plugins/src/remote.rs index 6fa1dc3c15..b42b8b27a2 100644 --- a/codex-rs/core-plugins/src/remote.rs +++ b/codex-rs/core-plugins/src/remote.rs @@ -645,7 +645,7 @@ pub async fn fetch_remote_installed_plugins( let mut installed_plugins = [global, workspace] .into_iter() .flat_map(|(_scope, plugins)| plugins) - .map(|plugin| remote_installed_item_to_cache_entry(&plugin)) + .map(|plugin| remote_installed_plugin_to_cache_entry(&plugin)) .collect::, _>>()?; installed_plugins.sort_by(|left, right| { left.marketplace_name @@ -1052,7 +1052,7 @@ fn remote_plugin_share_context( } } -fn remote_installed_item_to_cache_entry( +fn remote_installed_plugin_to_cache_entry( installed_plugin: &RemotePluginInstalledItem, ) -> Result { let plugin = &installed_plugin.plugin;