Fix duplicate videos in feed "All"
This commit is contained in:
parent
668db1e72c
commit
c0b2e2aebe
1 changed files with 4 additions and 1 deletions
|
|
@ -48,7 +48,10 @@ abstract class FeedDAO {
|
||||||
ON s.uid = f.stream_id
|
ON s.uid = f.stream_id
|
||||||
|
|
||||||
LEFT JOIN feed_group_subscription_join fgs
|
LEFT JOIN feed_group_subscription_join fgs
|
||||||
ON fgs.subscription_id = f.subscription_id
|
ON (
|
||||||
|
:groupId <> ${FeedGroupEntity.GROUP_ALL_ID}
|
||||||
|
AND fgs.subscription_id = f.subscription_id
|
||||||
|
)
|
||||||
|
|
||||||
WHERE (
|
WHERE (
|
||||||
:groupId = ${FeedGroupEntity.GROUP_ALL_ID}
|
:groupId = ${FeedGroupEntity.GROUP_ALL_ID}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue