From 318672b87765758f2fb864f50c46d1cdb80d9c86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bogdan-=C8=98tefan=20Neac=C5=9Fu?= Date: Thu, 26 Sep 2024 16:28:45 +0000 Subject: [PATCH] Fix broken build after merge --- common/authenticator-requests/src/v2/conversion.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/authenticator-requests/src/v2/conversion.rs b/common/authenticator-requests/src/v2/conversion.rs index ccf87b538d..b8e16ac4ba 100644 --- a/common/authenticator-requests/src/v2/conversion.rs +++ b/common/authenticator-requests/src/v2/conversion.rs @@ -167,7 +167,7 @@ impl From for v1::registration::RegistredData { impl From 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, } }