From 7941b63543c73742ae771b4af4a2af324c3da11d Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Fri, 4 Jun 2021 11:43:42 -0700 Subject: [PATCH] another typo --- controller/PostgreSQL.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controller/PostgreSQL.cpp b/controller/PostgreSQL.cpp index ce75d6469..1e90a31b3 100644 --- a/controller/PostgreSQL.cpp +++ b/controller/PostgreSQL.cpp @@ -348,7 +348,7 @@ std::string PostgreSQL::getSSOAuthURL(const nlohmann::json &member) nonce = std::string(nonceBuf); pqxx::result ir = w.exec_params0("INSERT INTO ztc_sso_expiry " - "(nonce, nonce_expiry, network_id, member_id) VALUES " + "(nonce, nonce_expiration, network_id, member_id) VALUES " "($1, TO_TIMESTAMP($2::double precision/1000) $3, $4)", nonce, OSUtils::now() + 300000, networkId, memberId); } else {