diff --git a/src/api/lib.rs b/src/api/lib.rs index fbea97b..19bfad6 100644 --- a/src/api/lib.rs +++ b/src/api/lib.rs @@ -365,7 +365,7 @@ impl TribufuApi { Ok(response.json().await?) } - pub async fn get_user_info(&self) -> Result { + pub async fn get_user_info(&self) -> Result { let url = format!("{}/v1/oauth2/userinfo", self.base_url); let headers = self.headers(); let response = self.http.get(url).headers(headers).send().await?;