1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-09-28 07:08:22 +00:00

Merge remote-tracking branch 'fix/fix_creation_time' into Develop

This commit is contained in:
Ozzieisaacs 2020-01-26 16:50:38 +01:00
commit a986faea56

View File

@ -121,7 +121,7 @@ def HandleSyncRequest():
changed_entries = (
db.session.query(db.Books)
.join(db.Data)
.filter(func.datetime(db.Books.last_modified) != sync_token.books_last_modified)
.filter(func.datetime(db.Books.last_modified) > sync_token.books_last_modified)
.filter(db.Data.format.in_(KOBO_FORMATS))
.all()
)
@ -140,7 +140,7 @@ def HandleSyncRequest():
new_books_last_modified = max(
book.last_modified, sync_token.books_last_modified
)
new_books_last_created = max(book.timestamp, sync_token.books_last_modified)
new_books_last_created = max(book.timestamp, sync_token.books_last_created)
sync_token.books_last_created = new_books_last_created
sync_token.books_last_modified = new_books_last_modified