Browse Source

Merge pull request #1500 from Meshcore-Portugal/jbrazio/2026_03a6aa94

Allow usage of "/" in radio names
pull/1530/head
ripplebiz 4 months ago
committed by GitHub
parent
commit
e60fb14e88
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      src/helpers/CommonCLI.cpp

2
src/helpers/CommonCLI.cpp

@ -16,7 +16,7 @@ static uint32_t _atoi(const char* sp) {
static bool isValidName(const char *n) { static bool isValidName(const char *n) {
while (*n) { while (*n) {
if (*n == '[' || *n == ']' || *n == '/' || *n == '\\' || *n == ':' || *n == ',' || *n == '?' || *n == '*') return false; if (*n == '[' || *n == ']' || *n == '\\' || *n == ':' || *n == ',' || *n == '?' || *n == '*') return false;
n++; n++;
} }
return true; return true;

Loading…
Cancel
Save