Skip to content

Commit

Permalink
Remove unecessary cast
Browse files Browse the repository at this point in the history
  • Loading branch information
Hinton committed Feb 2, 2024
1 parent bd2fe96 commit 74c1cb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bitwarden-exporters/src/json.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ impl From<LoginUri> for JsonLoginUri {
fn from(login_uri: LoginUri) -> Self {
JsonLoginUri {
uri: login_uri.uri,
r#match: login_uri.r#match.map(|m| m as u8),
r#match: login_uri.r#match,
}
}
}
Expand Down

0 comments on commit 74c1cb5

Please sign in to comment.