We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f6cb87 commit 57d2fe1Copy full SHA for 57d2fe1
1 file changed
app/src/main/java/org/schabi/newpipe/database/feed/dao/FeedDAO.kt
@@ -48,7 +48,10 @@ abstract class FeedDAO {
48
ON s.uid = f.stream_id
49
50
LEFT JOIN feed_group_subscription_join fgs
51
- ON fgs.subscription_id = f.subscription_id
+ ON (
52
+ :groupId <> ${FeedGroupEntity.GROUP_ALL_ID}
53
+ AND fgs.subscription_id = f.subscription_id
54
+ )
55
56
WHERE (
57
:groupId = ${FeedGroupEntity.GROUP_ALL_ID}
0 commit comments