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