Skip to content

Commit b6f85d1

Browse files
peombwaFehintolaObafemi
authored andcommitted
Revert bugfix 2455.
1 parent 6cda29a commit b6f85d1

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

config/ModuleMetadata.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@
2727
"versions": {
2828
"authentication": {
2929
"prerelease": "",
30-
"version": "2.11.0"
30+
"version": "2.11.1"
3131
},
3232
"beta": {
3333
"prerelease": "",
34-
"version": "2.11.0"
34+
"version": "2.11.1"
3535
},
3636
"v1.0": {
3737
"prerelease": "",
38-
"version": "2.11.0"
38+
"version": "2.11.1"
3939
}
4040
}
4141
}

src/Authentication/Authentication/Cmdlets/InvokeMgGraphRequest.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,8 @@ private Uri PrepareUri(HttpClient httpClient, Uri uri)
402402
// set body to null to prevent later FillRequestStream
403403
Body = null;
404404
}
405-
return uriBuilder.Uri.EscapeDataStrings();
405+
// TODO: Review the fix made in https://github.com/microsoftgraph/msgraph-sdk-powershell/pull/2455.
406+
return uriBuilder.Uri;
406407
}
407408

408409
private void ThrowIfError(ErrorRecord error)

0 commit comments

Comments
 (0)