Merge pull request #23036 from peppy/fix-account-reg-warning-bypass

Fix web account registration not bypassing the URL warning
This commit is contained in:
Bartłomiej Dach 2023-03-28 22:14:58 +02:00 committed by GitHub
commit 22bc5dff4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ private void performRegistration()
if (!string.IsNullOrEmpty(errors.Message))
passwordDescription.AddErrors(new[] { errors.Message });
game.OpenUrlExternally($"{errors.Redirect}?username={usernameTextBox.Text}&email={emailTextBox.Text}");
game.OpenUrlExternally($"{errors.Redirect}?username={usernameTextBox.Text}&email={emailTextBox.Text}", true);
}
}
else