fix occasional 500 errors on WPD

remotes/1693045480750635534/spooky-22
Aevann1 2022-09-01 21:00:08 +02:00
parent 78380d8b0c
commit 4ef9a7b58c
1 changed files with 1 additions and 0 deletions

View File

@ -927,6 +927,7 @@ def u_username(username, v=None):
abort(404)
if v and v.id not in (u.id, DAD_ID) and u.viewers_recorded:
g.db.flush()
view = g.db.query(ViewerRelationship).filter_by(viewer_id=v.id, user_id=u.id).one_or_none()
if view: view.last_view_utc = int(time.time())