mirror of
https://github.com/bitwarden/android.git
synced 2024-12-20 00:02:58 +03:00
no inline out
This commit is contained in:
parent
48d0d068d1
commit
3ad4e28a2c
1 changed files with 2 additions and 1 deletions
|
@ -19,7 +19,8 @@ namespace Bit.App.Models
|
||||||
var headerPieces = encryptedString.Split('.');
|
var headerPieces = encryptedString.Split('.');
|
||||||
string[] encPieces;
|
string[] encPieces;
|
||||||
|
|
||||||
if(headerPieces.Length == 2 && Enum.TryParse(headerPieces[0], out EncryptionType encType))
|
EncryptionType encType;
|
||||||
|
if(headerPieces.Length == 2 && Enum.TryParse(headerPieces[0], out encType))
|
||||||
{
|
{
|
||||||
EncryptionType = encType;
|
EncryptionType = encType;
|
||||||
encPieces = headerPieces[1].Split('|');
|
encPieces = headerPieces[1].Split('|');
|
||||||
|
|
Loading…
Reference in a new issue