Skip to content

Commit

Permalink
Fix broken build after merge (#4937)
Browse files Browse the repository at this point in the history
  • Loading branch information
neacsu authored Sep 26, 2024
1 parent 894e0bd commit fabd48b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/authenticator-requests/src/v2/conversion.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ impl From<v2::registration::RegistredData> for v1::registration::RegistredData {
impl From<v2::registration::RemainingBandwidthData> for v1::registration::RemainingBandwidthData {
fn from(value: v2::registration::RemainingBandwidthData) -> Self {
Self {
available_bandwidth: value.available_bandwidth,
available_bandwidth: value.available_bandwidth as u64,
suspended: false,
}
}
Expand Down

0 comments on commit fabd48b

Please sign in to comment.