Update EmailTokenProvider.cs

This commit is contained in:
Jonathan 2020-06-10 13:36:16 +02:00 committed by GitHub
parent 103a305c25
commit 9db52fac7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ namespace Microsoft.AspNetCore.Identity
{
var email = await manager.GetEmailAsync(user);
return $"{Email}:{purpose}:{email}";
return $"Email:{purpose}:{email}";
}
}
}