Fixed #1552 - Reordered token param to be at the end of the verification URL.
This commit is contained in:
Родитель
5c00f2233d
Коммит
6814e148ef
|
@ -107,8 +107,8 @@ const EmailUtils = {
|
|||
|
||||
getVerificationUrl(subscriber) {
|
||||
let url = new URL(`${AppConstants.SERVER_URL}/user/verify`);
|
||||
url.searchParams.append("token", encodeURIComponent(subscriber.verification_token));
|
||||
url = this.appendUtmParams(url, "verified-subscribers", "account-verification-email");
|
||||
url.searchParams.append("token", encodeURIComponent(subscriber.verification_token));
|
||||
return url;
|
||||
},
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче