Fix filtering of boosts (#1954)
This commit is contained in:
parent
8d9a54e8ea
commit
029513205b
|
@ -1249,7 +1249,7 @@ public class TimelineFragment extends SFragment implements
|
||||||
if (status != null
|
if (status != null
|
||||||
&& ((status.getInReplyToId() != null && filterRemoveReplies)
|
&& ((status.getInReplyToId() != null && filterRemoveReplies)
|
||||||
|| (status.getReblog() != null && filterRemoveReblogs)
|
|| (status.getReblog() != null && filterRemoveReblogs)
|
||||||
|| shouldFilterStatus(status))) {
|
|| shouldFilterStatus(status.getActionableStatus()))) {
|
||||||
it.remove();
|
it.remove();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue