Skip to content

Commit

Permalink
#502 fix path confirm email
Browse files Browse the repository at this point in the history
  • Loading branch information
joepio committed Jul 31, 2023
1 parent cfc4166 commit 8145c62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/plugins/register.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ pub fn handle_register_name_and_email(context: HandleGetContext) -> AtomicResult
let mut confirm_url = store
.get_server_url()
.clone()
.set_path("confirmEmail")
.set_path(urls::PATH_CONFIRM_EMAIL)
.url();
confirm_url.set_query(Some(&format!("token={}", token)));
let message = MailMessage {
Expand Down

0 comments on commit 8145c62

Please sign in to comment.