Only remove new swipe action when showing only new episodes

This commit is contained in:
ByteHamster 2021-09-03 21:28:36 +02:00
parent e1a767e6d1
commit 2f71f3fdbe

View File

@ -40,6 +40,6 @@ public class RemoveFromInboxSwipeAction implements SwipeAction {
@Override
public boolean willRemove(FeedItemFilter filter) {
return filter.showUnplayed;
return filter.showNew;
}
}