1
0
mirror of https://github.com/bitwarden/server.git synced 2025-02-16 01:51:21 +01:00

Return after no master password hint email

This commit is contained in:
Kyle Spearrin 2016-07-23 00:30:58 -04:00
parent 54696aade4
commit 939a9e25da

View File

@ -95,6 +95,7 @@ namespace Bit.Core.Services
if(string.IsNullOrWhiteSpace(user.MasterPasswordHint))
{
await _mailService.SendNoMasterPasswordHintEmailAsync(email);
return;
}
await _mailService.SendMasterPasswordHintEmailAsync(email, user.MasterPasswordHint);