Commit 9296d355 authored by Michael Shavit's avatar Michael Shavit

Fix bug with shelf deletions for Kobo.

We were incorrectly setting the user_id field in the ShelfArchive table
parent 06c15a79
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment