Skip to content

Commit

Permalink
fix: compile for release mode
Browse files Browse the repository at this point in the history
  • Loading branch information
speed2exe committed Sep 3, 2024
1 parent 6c0c99a commit 292740e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/client-api/src/http.rs
Original file line number Diff line number Diff line change
Expand Up @@ -785,7 +785,7 @@ impl Client {
#[instrument(level = "info", skip_all, err)]
pub async fn delete_user(&self) -> Result<(), AppResponseError> {
let (provider_access_token, provider_refresh_token) = {
let token = self.token();
let token = &self.token;
let token_read = token.read();
let token_resp = token_read
.as_ref()
Expand Down

0 comments on commit 292740e

Please sign in to comment.