mirror of
https://github.com/bitwarden/mobile
synced 2025-12-17 00:33:20 +00:00
throw exceptions for testing
This commit is contained in:
@@ -81,7 +81,8 @@ namespace Bit.Android.Services
|
||||
{
|
||||
Console.WriteLine("Failed to decrypt from secure storage.");
|
||||
_settings.Remove(formattedKey);
|
||||
return null;
|
||||
throw;
|
||||
//return null;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +110,7 @@ namespace Bit.Android.Services
|
||||
catch
|
||||
{
|
||||
Console.WriteLine("Failed to encrypt to secure storage.");
|
||||
throw;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -190,7 +192,8 @@ namespace Bit.Android.Services
|
||||
Console.WriteLine("Cannot get AesKey.");
|
||||
_keyStore.DeleteEntry(KeyAlias);
|
||||
_settings.Remove(AesKey);
|
||||
return null;
|
||||
throw;
|
||||
//return null;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user