Skip to content

Commit

Permalink
Revert bugfix 2455.
Browse files Browse the repository at this point in the history
  • Loading branch information
peombwa committed Dec 13, 2023
1 parent 6bea14b commit 0dfd617
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions config/ModuleMetadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@
"versions": {
"authentication": {
"prerelease": "",
"version": "2.11.0"
"version": "2.11.1"
},
"beta": {
"prerelease": "",
"version": "2.11.0"
"version": "2.11.1"
},
"v1.0": {
"prerelease": "",
"version": "2.11.0"
"version": "2.11.1"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,8 @@ private Uri PrepareUri(HttpClient httpClient, Uri uri)
// set body to null to prevent later FillRequestStream
Body = null;
}
return uriBuilder.Uri.EscapeDataStrings();
// TODO: Review the fix made in https://github.com/microsoftgraph/msgraph-sdk-powershell/pull/2455.
return uriBuilder.Uri;
}

private void ThrowIfError(ErrorRecord error)
Expand Down

0 comments on commit 0dfd617

Please sign in to comment.