Merge pull request #1290 from meshtastic/2.6.9

Reboot on Security Config Save
This commit is contained in:
Garth Vander Houwen 2025-06-23 09:35:14 -07:00 committed by GitHub
commit 0f4728cdf3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -349,6 +349,14 @@ struct SecurityConfig: View {
}
}
hasChanges = false
if keyUpdated {
if !bleManager.sendReboot(
fromUser: fromUser,
toUser: toUser
) {
Logger.mesh.warning("Reboot Failed")
}
}
goBack()
}
}