mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
refactor: update mqtt address size
This commit is contained in:
parent
22f941310b
commit
6b6070637e
1 changed files with 1 additions and 1 deletions
|
|
@ -69,7 +69,7 @@ fun ModuleSettingsItemList(viewModel: UIViewModel) {
|
|||
),
|
||||
keyboardActions = KeyboardActions(onDone = { focusManager.clearFocus() }),
|
||||
onValueChanged = { value ->
|
||||
if (value.toByteArray().size <= 31) // address max_size:32
|
||||
if (value.toByteArray().size <= 63) // address max_size:64
|
||||
mqttInput = mqttInput.copy { address = value }
|
||||
})
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue