From d9c4c40749caffb434c176d6c7c9aec193db6f78 Mon Sep 17 00:00:00 2001 From: Guilherme Werner Date: Fri, 12 Jan 2024 16:26:46 -0300 Subject: [PATCH] Update lib.rs --- src/api/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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?;