Skip to content

Commit

Permalink
Merge pull request #785 from AppFlowy-IO/fix/release-compile
Browse files Browse the repository at this point in the history
fix: compile for release mode
  • Loading branch information
speed2exe authored Sep 3, 2024
2 parents 6c0c99a + 292740e commit 7265208
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 7265208

Please sign in to comment.