From c4de27e46c0ee01fabd9941b03ff40303ac342e5 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Sun, 3 Sep 2023 22:31:02 +0100 Subject: [PATCH] [skip ci] fix: set right path for password reset --- src/methods/account_recover.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/methods/account_recover.rs b/src/methods/account_recover.rs index b452030..2317c3a 100644 --- a/src/methods/account_recover.rs +++ b/src/methods/account_recover.rs @@ -216,7 +216,7 @@ pub mod password { let recipient = &record.user; let mail = &record.mail; let url_base = "https://account.skynet.ie"; - let link_new = format!("{url_base}/recovery_pass?auth={auth}"); + let link_new = format!("{url_base}/recovery/password_reset?auth={auth}"); let discord = "https://discord.skynet.ie"; let sender = format!("UL Computer Society <{}>", &config.mail_user);