1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-04-04 17:36:02 +00:00

fixup! fix(core): don't use 'static lifetime for BLEEvent

This commit is contained in:
Roman Zeyde 2025-03-20 21:10:36 +02:00
parent ab02b04406
commit 4463cd960f

View File

@ -18,7 +18,8 @@ impl BLEEvent {
2 => Self::Disconnected,
3 => {
let code_str = str::from_utf8(data).map_err(|_| value_error!(c"Non-UTF code"))?;
let code = u32::from_str_radix(code_str, 10)
let code = code_str
.parse()
.map_err(|_| value_error!(c"Non-decimal code"))?;
Self::PairingRequest(code)
}