1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-06 18:43:43 +00:00

[SG-802] Add if check on notification tap. (#2172)

This commit is contained in:
André Bispo
2022-11-07 13:40:48 +00:00
committed by GitHub
parent 69f02eef82
commit 6bfc8f7d49

View File

@@ -228,7 +228,8 @@ namespace Bit.App.Services
if (data is PasswordlessNotificationData passwordlessNotificationData)
{
var notificationUserId = await _stateService.Value.GetUserIdAsync(passwordlessNotificationData.UserEmail);
if (notificationUserId != null)
var notificationSaved = await _stateService.Value.GetPasswordlessLoginNotificationAsync();
if (notificationUserId != null && notificationSaved != null)
{
await _stateService.Value.SetActiveUserAsync(notificationUserId);
_messagingService.Value.Send(AccountsManagerMessageCommands.SWITCHED_ACCOUNT);