1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-15 07:43:37 +00:00

re-worked message sending

This commit is contained in:
Kyle Spearrin
2019-04-19 12:29:37 -04:00
parent 4b7366e9b3
commit 7c1549bb95
8 changed files with 79 additions and 21 deletions

View File

@@ -140,7 +140,7 @@ namespace Bit.Core.Services
public void LogOut(Action callback)
{
callback.Invoke();
_messagingService.Send<object>("loggedOut");
_messagingService.Send("loggedOut");
}
public List<TwoFactorProvider> GetSupportedTwoFactorProviders()
@@ -312,7 +312,7 @@ namespace Bit.Core.Services
await _cryptoService.SetEncPrivateKeyAsync(tokenResponse.PrivateKey);
}
_messagingService.Send<object>("loggedIn");
_messagingService.Send("loggedIn");
return result;
}