actually redirect to old_id instead of new_id

pull/83/head
Aevann 2022-12-25 06:37:29 +02:00
parent c0ed424f21
commit ed16d42377
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ def move_acc(v:User, new_id, old_id):
new_id = int(new_id)
gevent.spawn(_moveacc, old_id, new_id)
return redirect(f"/id/{new_id}")
return redirect(f"/id/{old_id}")