Skip to content

Commit

Permalink
Updated StrawberrShake.Tools to allow header value to contain '='
Browse files Browse the repository at this point in the history
  • Loading branch information
doublestripe-development authored Dec 2, 2021
1 parent 33dc3f4 commit a3de6a7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public static Dictionary<string, IEnumerable<string>> ParseHeadersArgument(

foreach (var argument in arguments)
{
var argumentParts = argument?.Trim().Split("=");
var argumentParts = argument?.Trim().Split("=", 2);
if (argumentParts?.Length != 2)
{
continue;
Expand Down

0 comments on commit a3de6a7

Please sign in to comment.