redirect to accounts page after successful add

This commit is contained in:
Lynne Megido 2019-09-03 14:27:03 +10:00
parent 4680bc19c1
commit 0294f8e004

View File

@ -182,6 +182,7 @@ def bot_accounts_add():
c.execute("INSERT INTO `bot_learned_accounts` (`bot_id`, `fedi_id`) VALUES (%s, %s)", (session['bot'], request.form['account']))
c.close()
mysql.connection.commit()
return redirect("/bot/accounts/{}".format(session['bot']), 303)
else:
error = "Couldn't access ActivityPub outbox. {} may require authenticated fetches, which FediBooks doesn't support yet."
return render_template("bot_accounts_add.html", error = error)