remotes/1693045480750635534/spooky-22
Aevann1 2022-08-25 15:57:05 +02:00
parent 7308906612
commit 1675bdc2d3
1 changed files with 3 additions and 3 deletions

View File

@ -62,9 +62,9 @@ def get_logged_in_user():
v.last_active = timestamp
g.db.add(v)
else:
g.parsed_agent = str(user_agents.parse(g.agent))
if 'spider' not in g.parsed_agent.lower() and 'bot' not in g.parsed_agent.lower():
loggedout[session["session_id"]] = (timestamp, g.parsed_agent)
ua = str(user_agents.parse(g.agent))
if 'spider' not in ua.lower() and 'bot' not in ua.lower():
loggedout[session["session_id"]] = (timestamp, ua)
g.loggedin_counter = len([x for x in loggedin.values() if timestamp-x < LOGGEDIN_ACTIVE_TIME])
cache.set(f'{SITE}_loggedin', loggedin)