Fixed #1552 - Reordered token param to be at the end of the verification URL.

This commit is contained in:
Maxx Crawford 2020-03-13 14:36:29 -05:00
Родитель 5c00f2233d
Коммит 6814e148ef
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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;
},