null checks around Application.Current for SyncService.

This commit is contained in:
Kyle Spearrin 2016-10-29 10:30:03 -04:00
parent 74972336c6
commit 428e35237f

View file

@ -54,8 +54,8 @@ namespace Bit.App.Services
{ {
SyncCompleted(false); SyncCompleted(false);
if(cipher.StatusCode == System.Net.HttpStatusCode.Forbidden if(Application.Current != null && (cipher.StatusCode == System.Net.HttpStatusCode.Forbidden
|| cipher.StatusCode == System.Net.HttpStatusCode.Unauthorized) || cipher.StatusCode == System.Net.HttpStatusCode.Unauthorized))
{ {
MessagingCenter.Send(Application.Current, "Logout", (string)null); MessagingCenter.Send(Application.Current, "Logout", (string)null);
} }
@ -141,8 +141,8 @@ namespace Bit.App.Services
{ {
SyncCompleted(false); SyncCompleted(false);
if(ciphers.StatusCode == System.Net.HttpStatusCode.Forbidden if(Application.Current != null && (ciphers.StatusCode == System.Net.HttpStatusCode.Forbidden
|| ciphers.StatusCode == System.Net.HttpStatusCode.Unauthorized) || ciphers.StatusCode == System.Net.HttpStatusCode.Unauthorized))
{ {
MessagingCenter.Send(Application.Current, "Logout", (string)null); MessagingCenter.Send(Application.Current, "Logout", (string)null);
} }
@ -200,8 +200,8 @@ namespace Bit.App.Services
{ {
SyncCompleted(false); SyncCompleted(false);
if(ciphers.StatusCode == System.Net.HttpStatusCode.Forbidden if(Application.Current != null && (ciphers.StatusCode == System.Net.HttpStatusCode.Forbidden
|| ciphers.StatusCode == System.Net.HttpStatusCode.Unauthorized) || ciphers.StatusCode == System.Net.HttpStatusCode.Unauthorized))
{ {
MessagingCenter.Send(Application.Current, "Logout", (string)null); MessagingCenter.Send(Application.Current, "Logout", (string)null);
} }
@ -328,12 +328,22 @@ namespace Bit.App.Services
private void SyncStarted() private void SyncStarted()
{ {
if(Application.Current == null)
{
return;
}
SyncInProgress = true; SyncInProgress = true;
MessagingCenter.Send(Application.Current, "SyncStarted"); MessagingCenter.Send(Application.Current, "SyncStarted");
} }
private void SyncCompleted(bool successfully) private void SyncCompleted(bool successfully)
{ {
if(Application.Current == null)
{
return;
}
SyncInProgress = false; SyncInProgress = false;
MessagingCenter.Send(Application.Current, "SyncCompleted", successfully); MessagingCenter.Send(Application.Current, "SyncCompleted", successfully);
} }