Skip to content

Commit 23f9b74

Browse files
authored
Merge pull request #3125 from itowlson/plugins-upgrade-offer-on-name-match
When looking for upgradeable installed plugins, check only on name
2 parents e9427f3 + adc0577 commit 23f9b74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/plugins.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ impl Upgrade {
280280
.filter(|installed| {
281281
catalogue_plugins
282282
.iter()
283-
.any(|catalogue| installed.manifest == catalogue.manifest)
283+
.any(|catalogue| installed.manifest.name() == catalogue.manifest.name())
284284
})
285285
.collect();
286286

0 commit comments

Comments
 (0)