Revert using fetch date for updates list

Spamming the list post-migration is currently a more common usecase than sources without chapter dates. We'll need to figure out a better way of handling both scenarios.

(cherry picked from commit 5b23f29d06da74c237d8e0ecc7772773ca0b4c1e)
This commit is contained in:
arkon 2021-04-04 18:11:11 -04:00 committed by Jobobby04
parent f6b9867ce8
commit 6d9753f361

View File

@ -138,10 +138,9 @@ fun getRecentsQuery() =
SELECT ${Manga.TABLE}.${Manga.COL_URL} as mangaUrl, * FROM ${Manga.TABLE} JOIN ${Chapter.TABLE}
ON ${Manga.TABLE}.${Manga.COL_ID} = ${Chapter.TABLE}.${Chapter.COL_MANGA_ID}
WHERE ${Manga.COL_FAVORITE} = 1
AND ${Chapter.COL_DATE_FETCH} > ?
AND ${Chapter.COL_DATE_UPLOAD} > ?
AND ${Chapter.COL_DATE_FETCH} > ${Manga.COL_DATE_ADDED}
ORDER BY ${Chapter.COL_DATE_FETCH} DESC
LIMIT 500
ORDER BY ${Chapter.COL_DATE_UPLOAD} DESC
"""
/**