We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a86176d commit f6bccabCopy full SHA for f6bccab
app/src/cc/arduino/contributions/libraries/filters/UpdatableLibraryPredicate.java
@@ -54,7 +54,8 @@ public boolean test(ContributedLibrary contributedLibrary) {
54
}
55
List<ContributedLibrary> libraries = BaseNoGui.librariesIndexer.getIndex().find(libraryName);
56
return libraries.stream()
57
- .filter(library -> versionComparator.greaterThan(library.getParsedVersion(), installed.getParsedVersion()))
+ .filter(library -> versionComparator.greaterThan(library.getParsedVersion(), installed.getParsedVersion())
58
+ && library.getArchitectures().containsAll(installed.getArchitectures()))
59
.count() > 0;
60
61
0 commit comments