From 4f8a62df41e9651d50f7aec3ccb682a155e87ecf Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Fri, 10 Sep 2021 07:19:32 +0200 Subject: [PATCH] fd --- files/routes/posts.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/files/routes/posts.py b/files/routes/posts.py index f63827415..039e7c248 100644 --- a/files/routes/posts.py +++ b/files/routes/posts.py @@ -191,8 +191,11 @@ def post_id(pid, anything=None, v=None): session[str(post.id)] = int(time.time()) + print(session) + keys = [] for key, val in session.items(): + print(key) if type(val) is int and key not in ['login_nonce','user_id']: if time.time() - val > 86400: keys += key