From 12b90f15092cdee2e69187a81db66fc706464be1 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Mon, 23 Aug 2021 21:03:42 +0200 Subject: [PATCH] dfdf --- files/routes/login.py | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/files/routes/login.py b/files/routes/login.py index bcd1f2e56..6591eb033 100644 --- a/files/routes/login.py +++ b/files/routes/login.py @@ -40,10 +40,20 @@ def check_for_alts(current_id): if not check1 and not check2: try: - new_alt = Alt(user1=past_id, - user2=current_id) + new_alt = Alt(user1=past_id, user2=current_id) g.db.add(new_alt) - + otheralts = g.db.query(Alt).filter(or_(Alt.user1 == past_id, Alt.user2 == past_id, Alt.user1 == current_id, Alt.user2 == current_id)).all() + for a in otheralts: + try: + new_alt = Alt(user1=a.user1, user2=past_id) + g.db.add(new_alt) + g.db.flush() + new_alt = Alt(user1=a.user1, user2=current_id) + g.db.add(new_alt) + g.db.flush() + except: + g.db.rollback() + continue except BaseException: pass