mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-11-03 23:58:55 +01:00 
			
		
		
		
	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.
This commit is contained in:
		@@ -39,10 +39,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
 | 
			
		||||
"""
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user