mirror of
https://github.com/bitwarden/android.git
synced 2025-03-07 15:06:02 +03:00
build engine doesnt like inline out params
This commit is contained in:
parent
672d753adf
commit
56e166d61a
1 changed files with 3 additions and 1 deletions
|
@ -18,7 +18,9 @@ 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…
Add table
Reference in a new issue