diff --git a/files/routes/wrappers.py b/files/routes/wrappers.py index 8255703ef..13be4ed23 100644 --- a/files/routes/wrappers.py +++ b/files/routes/wrappers.py @@ -14,7 +14,10 @@ from files.__main__ import app, cache, db_session, limiter def calc_users(v): - if not g.is_api_or_xhr: return + if g.is_api_or_xhr: + g.loggedin_counter = 0 + g.loggedout_counter = 0 + return '' loggedin = cache.get(f'{SITE}_loggedin') or {} loggedout = cache.get(f'{SITE}_loggedout') or {} timestamp = int(time.time())