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:
parent
ab02b04406
commit
4463cd960f
@ -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)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user