Fix function "mark all feed as read" (Thank you roughnecks)
This commit is contained in:
parent
71403cda6b
commit
8e45ebc071
2 changed files with 3 additions and 3 deletions
|
@ -1933,7 +1933,7 @@ async def mark_all_as_read(db_file):
|
|||
SELECT entries_properties.id, title, link, summary_text, feed_id, published
|
||||
FROM entries_properties
|
||||
INNER JOIN entries_state ON entries_properties.id = entries_state.entry_id
|
||||
WHERE entries_state.archive = 1
|
||||
WHERE entries_state.archived = 1
|
||||
"""
|
||||
)
|
||||
ixs = cur.execute(sql).fetchall()
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
__version__ = '0.1.55'
|
||||
__version_info__ = (0, 1, 55)
|
||||
__version__ = '0.1.56'
|
||||
__version_info__ = (0, 1, 56)
|
||||
|
|
Loading…
Reference in a new issue