Skip to content

Commit b12715c

Browse files
committed
Added else block
1 parent 7b2c3ba commit b12715c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Authentication/Authentication/Helpers/EncodeUriPath.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@ public static Uri EscapeDataStrings(this Uri uri)
3333
sb.Append(Uri.EscapeDataString(segment));
3434
sb.Append(queryString);
3535
}
36-
sb.Append(Uri.EscapeDataString(segment));
36+
else
37+
{
38+
sb.Append(Uri.EscapeDataString(segment));
39+
}
3740
}
3841
counter++;
3942
}

0 commit comments

Comments
 (0)