Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit 10e40cf

Browse files
committed
Use KeyValueJoinCharacter property instead of "=" when constuct the string.
1 parent bd4c8a1 commit 10e40cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Api/Helpers/QueryStringBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public override string ToString()
9494
stringBuilder.Append(SeperatorCharacter);
9595
}
9696
stringBuilder.Append(keyValuePair.Key);
97-
stringBuilder.Append('=');
97+
stringBuilder.Append(KeyValueJoinCharacter);
9898
stringBuilder.Append(Uri.EscapeDataString(keyValuePair.Value));
9999
}
100100
return stringBuilder.ToString();

0 commit comments

Comments
 (0)