From f7ac2fa9512d437f5cb41bc9ccc88271b30897a7 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Sun, 4 Jun 2023 21:52:25 +0100 Subject: [PATCH] fix: this was not intended to be commented out --- src/methods/account_new.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/methods/account_new.rs b/src/methods/account_new.rs index 7079897..b92ca7f 100644 --- a/src/methods/account_new.rs +++ b/src/methods/account_new.rs @@ -175,7 +175,7 @@ pub async fn post_new_account_confirmation(mut req: Request) -> tide::Res } = &req.state(); // make sure to clear out the expired ones first - //db_pending_clear_expired(db).await; + db_pending_clear_expired(db).await; // search db for auth_code let results = sqlx::query_as::<_, AccountsPending>(