diff --git a/crates/plugins/src/manifest.rs b/crates/plugins/src/manifest.rs index 9a0fe43d84..e4f73260cd 100644 --- a/crates/plugins/src/manifest.rs +++ b/crates/plugins/src/manifest.rs @@ -60,7 +60,7 @@ impl PluginManifest { } pub fn is_installed_in(&self, store: &PluginStore) -> bool { match store.read_plugin_manifest(&self.name) { - Ok(m) => m.version == self.version, + Ok(m) => m.eq(self), Err(_) => false, } }