From aec2855db9cc091b6b82df82bfc8fd1d94ec3d4c Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 18 Apr 2019 14:30:38 -0400 Subject: [PATCH] update message send type --- src/Core/Services/AuthService.cs | 4 ++-- src/Core/Services/SyncService.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Core/Services/AuthService.cs b/src/Core/Services/AuthService.cs index 8b0472e5e..914ddb4c7 100644 --- a/src/Core/Services/AuthService.cs +++ b/src/Core/Services/AuthService.cs @@ -140,7 +140,7 @@ namespace Bit.Core.Services public void LogOut(Action callback) { callback.Invoke(); - _messagingService.Send("loggedOut"); + _messagingService.Send("loggedOut"); } public List GetSupportedTwoFactorProviders() @@ -312,7 +312,7 @@ namespace Bit.Core.Services await _cryptoService.SetEncPrivateKeyAsync(tokenResponse.PrivateKey); } - _messagingService.Send("loggedIn"); + _messagingService.Send("loggedIn"); return result; } diff --git a/src/Core/Services/SyncService.cs b/src/Core/Services/SyncService.cs index 764ddbb0f..f5c662942 100644 --- a/src/Core/Services/SyncService.cs +++ b/src/Core/Services/SyncService.cs @@ -255,7 +255,7 @@ namespace Bit.Core.Services private void SyncStarted() { SyncInProgress = true; - _messagingService.Send("syncStarted"); + _messagingService.Send("syncStarted"); } private bool SyncCompleted(bool successfully)