Moves upcoming requirement from existence to current day or later. (#606)

* Moves upcoming requirement from existence to current day or later.

* Suppress millis conversion warning
This commit is contained in:
Maddie Witman
2024-03-31 03:49:06 -04:00
committed by GitHub
parent 555d2f834f
commit c9fddf9e38
2 changed files with 6 additions and 2 deletions

View File

@@ -115,7 +115,7 @@ AND _id != :id;
getUpcomingManga:
SELECT *
FROM mangas
WHERE next_update > 0
WHERE next_update >= :startOfDay
AND favorite = 1
AND status IN :statuses
ORDER BY next_update ASC;