Fix bug with shelf deletions for Kobo.

We were incorrectly setting the user_id field in the ShelfArchive table
This commit is contained in:
Michael Shavit 2020-04-21 23:57:20 -04:00
parent 06c15a792e
commit 9296d35517
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ def delete_shelf_helper(cur_shelf):
shelf_id = cur_shelf.id
ub.session.delete(cur_shelf)
ub.session.query(ub.BookShelf).filter(ub.BookShelf.shelf == shelf_id).delete()
ub.session.add(ub.ShelfArchive(uuid = cur_shelf.uuid, user_id = cur_shelf.uuid))
ub.session.add(ub.ShelfArchive(uuid = cur_shelf.uuid, user_id = cur_shelf.user_id))
ub.session.commit()
log.info("successfully deleted %s", cur_shelf)