mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
os version checks on auth service apis
This commit is contained in:
parent
f8d5ee9d5d
commit
f19a8a3cc5
1 changed files with 6 additions and 4 deletions
|
@ -149,7 +149,7 @@ namespace Bit.iOS
|
||||||
MessagingCenter.Subscribe<Xamarin.Forms.Application, bool>(
|
MessagingCenter.Subscribe<Xamarin.Forms.Application, bool>(
|
||||||
Xamarin.Forms.Application.Current, "FullSyncCompleted", async (sender, successfully) =>
|
Xamarin.Forms.Application.Current, "FullSyncCompleted", async (sender, successfully) =>
|
||||||
{
|
{
|
||||||
if(successfully)
|
if(_deviceInfoService.Version >= 12 && successfully)
|
||||||
{
|
{
|
||||||
await ASHelpers.ReplaceAllIdentities(_cipherService);
|
await ASHelpers.ReplaceAllIdentities(_cipherService);
|
||||||
}
|
}
|
||||||
|
@ -158,7 +158,7 @@ namespace Bit.iOS
|
||||||
MessagingCenter.Subscribe<Xamarin.Forms.Application, Tuple<string, bool>>(
|
MessagingCenter.Subscribe<Xamarin.Forms.Application, Tuple<string, bool>>(
|
||||||
Xamarin.Forms.Application.Current, "UpsertedCipher", async (sender, data) =>
|
Xamarin.Forms.Application.Current, "UpsertedCipher", async (sender, data) =>
|
||||||
{
|
{
|
||||||
if(await ASHelpers.IdentitiesCanIncremental())
|
if(_deviceInfoService.Version >= 12 && await ASHelpers.IdentitiesCanIncremental())
|
||||||
{
|
{
|
||||||
if(data.Item2)
|
if(data.Item2)
|
||||||
{
|
{
|
||||||
|
@ -178,7 +178,7 @@ namespace Bit.iOS
|
||||||
MessagingCenter.Subscribe<Xamarin.Forms.Application, Cipher>(
|
MessagingCenter.Subscribe<Xamarin.Forms.Application, Cipher>(
|
||||||
Xamarin.Forms.Application.Current, "DeletedCipher", async (sender, cipher) =>
|
Xamarin.Forms.Application.Current, "DeletedCipher", async (sender, cipher) =>
|
||||||
{
|
{
|
||||||
if(await ASHelpers.IdentitiesCanIncremental())
|
if(_deviceInfoService.Version >= 12 && await ASHelpers.IdentitiesCanIncremental())
|
||||||
{
|
{
|
||||||
var identity = ASHelpers.ToCredentialIdentity(cipher);
|
var identity = ASHelpers.ToCredentialIdentity(cipher);
|
||||||
if(identity == null)
|
if(identity == null)
|
||||||
|
@ -195,7 +195,9 @@ namespace Bit.iOS
|
||||||
MessagingCenter.Subscribe<Xamarin.Forms.Application>(
|
MessagingCenter.Subscribe<Xamarin.Forms.Application>(
|
||||||
Xamarin.Forms.Application.Current, "LoggedOut", async (sender) =>
|
Xamarin.Forms.Application.Current, "LoggedOut", async (sender) =>
|
||||||
{
|
{
|
||||||
await ASCredentialIdentityStore.SharedStore.RemoveAllCredentialIdentitiesAsync();
|
if(_deviceInfoService.Version >= 12) {
|
||||||
|
await ASCredentialIdentityStore.SharedStore.RemoveAllCredentialIdentitiesAsync();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
ZXing.Net.Mobile.Forms.iOS.Platform.Init();
|
ZXing.Net.Mobile.Forms.iOS.Platform.Init();
|
||||||
|
|
Loading…
Reference in a new issue