mirror of
https://github.com/bitwarden/mobile
synced 2025-12-26 13:13:28 +00:00
no inline out
This commit is contained in:
@@ -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('|');
|
||||
|
||||
Reference in New Issue
Block a user