Skip to content

Commit

Permalink
fix(ffi): Correctly indicate OIDC support when fetching metadata fails.
Browse files Browse the repository at this point in the history
  • Loading branch information
pixlwave committed Feb 25, 2025
1 parent 3e3bff7 commit 2970253
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindings/matrix-sdk-ffi/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ impl Client {
}
Err(error) => {
error!("Failed to fetch OIDC provider metadata: {error}");
(true, Default::default())
(false, Default::default())
}
};

Expand Down

0 comments on commit 2970253

Please sign in to comment.