Skip to content

Commit 1430b80

Browse files
Update src/Authentication/Authentication/Helpers/EncodeUriPath.cs
Co-authored-by: Caleb Kiage <747955+calebkiage@users.noreply.github.com>
1 parent 6b8a093 commit 1430b80

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Authentication/Authentication/Helpers/EncodeUriPath.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ public static Uri EscapeDataStrings(this Uri uri)
2323
//Skips the left part of the uri i.e https://graph.microsoft.com
2424
if (counter > 2)
2525
{
26-
sb.Append("/" + Uri.EscapeDataString(segment));
26+
sb.Append('/');
27+
sb.Append(Uri.EscapeDataString(segment));
2728
}
2829
counter++;
2930
}

0 commit comments

Comments
 (0)