Reboot on key changes

This commit is contained in:
Garth Vander Houwen 2025-06-23 09:25:39 -07:00
parent bd6f4ad7ca
commit fc206bbc05

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()
}
}