We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b8a093 commit 1430b80Copy full SHA for 1430b80
src/Authentication/Authentication/Helpers/EncodeUriPath.cs
@@ -23,7 +23,8 @@ public static Uri EscapeDataStrings(this Uri uri)
23
//Skips the left part of the uri i.e https://graph.microsoft.com
24
if (counter > 2)
25
{
26
- sb.Append("/" + Uri.EscapeDataString(segment));
+ sb.Append('/');
27
+ sb.Append(Uri.EscapeDataString(segment));
28
}
29
counter++;
30
0 commit comments