PR comments:

- StatusFilterPredicate sets clientFilters bases on settings
- Reverted changes on SettingsFragment
- Resources in strings_mo.xml
- removed duplicate comments
- conditional in onBind method
This commit is contained in:
Botiplz
2023-07-22 19:41:01 +02:00
parent 605ba441d3
commit 6ed7d24513
9 changed files with 20 additions and 24 deletions

View File

@@ -16,6 +16,6 @@ public class AltTextFilter extends Filter {
@Override
public boolean matches(Status status) {
return !GlobalUserPreferences.showPostsWithoutAlt && status.getContentStatus().mediaAttachments.stream().map(attachment -> attachment.description).anyMatch(StringUtil::isBlank);
return status.getContentStatus().mediaAttachments.stream().map(attachment -> attachment.description).anyMatch(StringUtil::isBlank);
}
}