From eb332843ef95c746372efa2f9686d9e2ddba42c2 Mon Sep 17 00:00:00 2001 From: Devin Carraway Date: Tue, 28 Apr 2026 22:17:06 +1000 Subject: [PATCH] Allow set prv.seed remotely --- src/helpers/CommonCLI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/CommonCLI.cpp b/src/helpers/CommonCLI.cpp index 5851ef12e..56ce0999c 100644 --- a/src/helpers/CommonCLI.cpp +++ b/src/helpers/CommonCLI.cpp @@ -535,7 +535,7 @@ void CommonCLI::handleSetCmd(uint32_t sender_timestamp, char* command, char* rep } else { strcpy(reply, "Error, bad key"); } - } else if (sender_timestamp == 0 && memcmp(config, "prv.seed ", 9) == 0) { // from serial command line only + } else if (memcmp(config, "prv.seed ", 9) == 0) { uint8_t seed[SEED_SIZE]; bool success = mesh::Utils::fromHex(seed, SEED_SIZE, &config[9]); if (success) {