We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bed9b98 commit d40bb07Copy full SHA for d40bb07
crates/tmc-testmycode-client/src/client.rs
@@ -130,7 +130,7 @@ impl TestMyCodeClient {
130
.0
131
.root_url
132
.join("/oauth/token")
133
- .map_err(|e| TestMyCodeClientError::UrlParse("oauth/token".to_string(), e))?;
+ .map_err(|e| TestMyCodeClientError::UrlParse(self.0.root_url.to_string() + "/oauth/token", e))?;
134
135
let credentials = api_v8::get_credentials(self, client_name)?;
136
0 commit comments