mirror of
https://github.com/f-droid/fdroidclient.git
synced 2026-04-19 14:27:01 -04:00
Follow showIncompatibleVersion
This commit is contained in:
@@ -140,7 +140,7 @@ class LatestViewBinder implements Observer<List<AppOverviewItem>>, ChangeListene
|
||||
AppOverviewItem item = iterator.next();
|
||||
if (isFilteredByAntiFeature(item, antiFeatures, shownAntiFeatures, showOtherAntiFeatures)) {
|
||||
iterator.remove();
|
||||
} else if (!item.isCompatible()) {
|
||||
} else if (!Preferences.get().showIncompatibleVersions() && !item.isCompatible()) {
|
||||
iterator.remove();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user