Merge pull request #5383 from ByteHamster/swipe-new

Only remove new swipe action when showing only new episodes
This commit is contained in:
ByteHamster 2021-09-06 17:59:38 +02:00 committed by GitHub
commit 744bf10532
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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