1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-17 16:53:26 +00:00

bump version

This commit is contained in:
Kyle Spearrin
2018-10-03 00:35:06 -04:00
parent a4f93eea45
commit b7c6b65a3d
5 changed files with 14 additions and 14 deletions

View File

@@ -158,14 +158,14 @@ namespace Bit.iOS
MessagingCenter.Subscribe<Xamarin.Forms.Application, Tuple<string, bool>>(
Xamarin.Forms.Application.Current, "UpsertedCipher", async (sender, data) =>
{
if (_deviceInfoService.Version >= 12)
if(_deviceInfoService.Version >= 12)
{
if (await ASHelpers.IdentitiesCanIncremental())
if(await ASHelpers.IdentitiesCanIncremental())
{
if (data.Item2)
if(data.Item2)
{
var identity = await ASHelpers.GetCipherIdentityAsync(data.Item1, _cipherService);
if (identity == null)
if(identity == null)
{
return;
}
@@ -181,12 +181,12 @@ namespace Bit.iOS
MessagingCenter.Subscribe<Xamarin.Forms.Application, Cipher>(
Xamarin.Forms.Application.Current, "DeletedCipher", async (sender, cipher) =>
{
if (_deviceInfoService.Version >= 12)
if(_deviceInfoService.Version >= 12)
{
if (await ASHelpers.IdentitiesCanIncremental())
if(await ASHelpers.IdentitiesCanIncremental())
{
var identity = ASHelpers.ToCredentialIdentity(cipher);
if (identity == null)
if(identity == null)
{
return;
}