Skip to content

Commit 30530ed

Browse files
committed
Merged master
2 parents 0f6463b + 4e68f23 commit 30530ed

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

UID2.Client.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package>
33
<metadata>
44
<id>UID2.Client</id>
5-
<version>5.3.1</version>
5+
<version>5.4.0</version>
66
<title>UID2 Client C# SDK</title>
77
<authors>UID2 team</authors>
88
<owners>UID2 team</owners>

src/UID2.Client/UID2Encryption.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ internal static DecryptionResponse Decrypt(string token, KeyContainer keys, Date
1919
{
2020
if (token.Length < 4)
2121
{
22-
DecryptionResponse.MakeError(DecryptionStatus.InvalidPayload);
22+
return DecryptionResponse.MakeError(DecryptionStatus.InvalidPayload);
2323
}
2424

2525
string headerStr = token.Substring(0, 4);

0 commit comments

Comments
 (0)