1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-01 17:38:37 +00:00

fix(fever): correct sorting direction when using max_id argument

This commit is contained in:
Frédéric Guillot 2024-08-17 17:42:34 -07:00
parent e98e16e45a
commit f3a5a3ee14
2 changed files with 4 additions and 4 deletions

View file

@ -402,13 +402,13 @@ func (e *EntryQueryBuilder) GetEntryIDs() ([]int64, error) {
query := `
SELECT
e.id
FROM
FROM
entries e
LEFT JOIN
feeds f
ON
f.id=e.feed_id
WHERE
f.id=e.feed_id
WHERE
%s %s
`