mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-04-20 22:13:47 +00:00
* is_name_char() bug fix
This commit is contained in:
parent
937865c8fd
commit
3ef53e64a1
1 changed files with 1 additions and 1 deletions
|
|
@ -848,7 +848,7 @@ void MyMesh::clearStats() {
|
|||
}
|
||||
|
||||
static bool is_name_char(char c) {
|
||||
return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || (c >= '0' && c <= 'z') || c == '-' || c == '.' || c == '_' || c == '#';
|
||||
return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || (c >= '0' && c <= '9') || c == '-' || c == '.' || c == '_' || c == '#';
|
||||
}
|
||||
|
||||
void MyMesh::handleCommand(uint32_t sender_timestamp, char *command, char *reply) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue