Fix compilation error

This commit is contained in:
Jan Kaluza 2016-01-23 15:27:31 +01:00
parent 31ad180f41
commit 0724113762

View file

@ -396,7 +396,7 @@ void Server::serve_oauth2(struct mg_connection *conn, struct http_message *hm) {
std::string code = get_http_var(hm, "code");
std::string state = get_http_var(hm, "state");
send_command(instance, "set_oauth2_code " + code + " " + state)
send_command(instance, "set_oauth2_code " + code + " " + state);
redirect_to(conn, hm, "/instances/");
}