Fix filtering of boosts (#1954)

This commit is contained in:
Levi Bard 2020-10-13 18:30:39 +02:00 committed by Alibek Omarov
parent 8d9a54e8ea
commit 029513205b
1 changed files with 1 additions and 1 deletions

View File

@ -1249,7 +1249,7 @@ public class TimelineFragment extends SFragment implements
if (status != null
&& ((status.getInReplyToId() != null && filterRemoveReplies)
|| (status.getReblog() != null && filterRemoveReblogs)
|| shouldFilterStatus(status))) {
|| shouldFilterStatus(status.getActionableStatus()))) {
it.remove();
}
}