From 0285135d4f7dfa412a560a517f5d6879ce4428f4 Mon Sep 17 00:00:00 2001 From: PLUJA <64632615+pluja@users.noreply.github.com> Date: Tue, 8 Sep 2020 00:02:51 +0200 Subject: [PATCH] Fix db error. last_seen throws errors on production server. I'm investigating. commented for now. --- app/routes.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/routes.py b/app/routes.py index f1df17b..555929d 100644 --- a/app/routes.py +++ b/app/routes.py @@ -45,7 +45,7 @@ ALLOWED_EXTENSIONS = {'json', 'db'} @app.route('/index') @login_required def index(): - current_user.last_seen = datetime.datetime.utcnow() + #current_user.last_seen = datetime.datetime.utcnow() return render_template('home.html') @app.route('/twitter') @@ -390,18 +390,18 @@ def logout(): @app.route('/settings') @login_required def settings(): - active = 1 + '''active = 1 for user in User.query.all(): if not user.last_seen == None: t = datetime.datetime.utcnow() - user.last_seen s = t.total_seconds() m = s/60 if m < 40: - active = active+1 + active = active+1''' instanceInfo = { "totalUsers":db.session.query(User).count(), - "active":active, + "active":"unknown", "location":config['serverLocation'], "serverName":config['serverName'] } @@ -745,4 +745,4 @@ def getYoutubePosts(ids): video.description = re.sub(r'^https?:\/\/.*[\r\n]*', '', video.description[0:120]+"...", flags=re.MULTILINE) videos.append(video) return videos - \ No newline at end of file +