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:
parent
e98e16e45a
commit
f3a5a3ee14
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
`
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue