remotes/1693045480750635534/spooky-22
Aevann1 2021-08-23 21:03:42 +02:00
parent bad68f7dba
commit 12b90f1509
1 changed files with 13 additions and 3 deletions

View File

@ -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