1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-28 03:57:43 +02:00

Catch task cancellation of App.cs syncs

This commit is contained in:
Kyle Spearrin 2016-08-19 18:42:27 -04:00
parent c27d427799
commit 8d33d8f216

View File

@ -145,6 +145,11 @@ namespace Bit.App
}
attempt++;
}
catch(Exception e) when(e is TaskCanceledException || e is OperationCanceledException)
{
Debug.WriteLine("Cancellation exception.");
break;
}
} while(attempt <= 1);
}
else
@ -178,8 +183,17 @@ namespace Bit.App
}
attempt++;
}
catch(Exception e) when(e is TaskCanceledException || e is OperationCanceledException)
{
Debug.WriteLine("Cancellation exception.");
break;
}
} while(attempt <= 1);
}
else
{
Debug.WriteLine("Not connected.");
}
}
private async void Logout(string logoutMessage)