Adding a todo
This commit is contained in:
parent
5118a1fb1e
commit
b79b69d961
|
@ -81,6 +81,7 @@ public class HomeTimelineFragment extends StatusListFragment{
|
|||
}
|
||||
|
||||
private List<Status> filterPosts(List<Status> items) {
|
||||
// This is the function I must use to solve the filters thing for real
|
||||
return items.stream().filter(i ->
|
||||
(GlobalUserPreferences.showReplies || i.inReplyToId == null) &&
|
||||
(GlobalUserPreferences.showBoosts || i.reblog == null)
|
||||
|
|
Loading…
Reference in New Issue