From adc0577f10d5b00df4df5ec5c91333374773e9e8 Mon Sep 17 00:00:00 2001 From: itowlson Date: Tue, 29 Apr 2025 12:43:01 +1200 Subject: [PATCH] When looking for upgradeable installed plugins, check only on name Signed-off-by: itowlson --- src/commands/plugins.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/plugins.rs b/src/commands/plugins.rs index 68120e87b2..5f701a7fdc 100644 --- a/src/commands/plugins.rs +++ b/src/commands/plugins.rs @@ -280,7 +280,7 @@ impl Upgrade { .filter(|installed| { catalogue_plugins .iter() - .any(|catalogue| installed.manifest == catalogue.manifest) + .any(|catalogue| installed.manifest.name() == catalogue.manifest.name()) }) .collect();