This commit is contained in:
Aevann1 2021-08-23 21:10:49 +02:00
parent 7e6f95a5af
commit ad31b88d73
2 changed files with 16 additions and 6 deletions

View file

@ -40,10 +40,22 @@ 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()
print(otheralts)
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 Exception as e:
g.db.rollback()
print(e)
continue
except BaseException:
pass