fix(settings): deduplicate not-interested list by tmdb_id #12
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix/ratings-not-interested-duplicates"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
user_discovery has one row per (user_id, audience_id, tmdb_id), so a
user in N audiences would see each skipped item N times. Group by
tmdb_id and take MAX(generated_at) to collapse duplicates.