Skip to content

Commit

Permalink
Update Microsoft.Toolkit.Graph/Providers/MockProvider.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-hawker authored Aug 11, 2020
1 parent 4a45671 commit 3cc9ec3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Microsoft.Toolkit.Graph/Providers/MockProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ private set
var requestUri = requestMessage.RequestUri.ToString();

// Prepend Proxy Service URI to our request
requestMessage.RequestUri = new Uri(GRAPH_PROXY_URL + HttpUtility.UrlEncode(requestUri));
requestMessage.RequestUri = new Uri(GRAPH_PROXY_URL + Uri.EscapeDataString(requestUri));

return this.AuthenticateRequestAsync(requestMessage);
}));
Expand Down

0 comments on commit 3cc9ec3

Please sign in to comment.