feat: include plan to watch anime in notifications

This commit is contained in:
2026-04-08 13:06:22 +02:00
parent 6f54ed16eb
commit 78f5a85df5
2 changed files with 2 additions and 2 deletions

View File

@@ -77,5 +77,5 @@ SELECT
a.airing
FROM watch_list_entry e
JOIN anime a ON e.anime_id = a.id
WHERE e.user_id = ? AND e.status = 'watching' AND a.airing = 1
WHERE e.user_id = ? AND e.status IN ('watching', 'plan_to_watch') AND a.airing = 1
ORDER BY e.updated_at DESC;