no inline out
This commit is contained in:
parent
48d0d068d1
commit
3ad4e28a2c
|
@ -19,7 +19,8 @@ namespace Bit.App.Models
|
|||
var headerPieces = encryptedString.Split('.');
|
||||
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;
|
||||
encPieces = headerPieces[1].Split('|');
|
||||
|
|
Loading…
Reference in New Issue