fix wrong function

pull/216/head
Aevann 2023-11-03 21:31:52 +02:00
parent 54f79bb664
commit a4bfaf5a28
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ def check_for_alts(current, include_current_session=False):
User.email_verified == True,
User.id != current.id,
).all()]
past_accs.extend(more_ids)
past_accs.update(more_ids)
for past_id in list(past_accs):
if past_id == current.id: continue