mirror of
https://github.com/Lime3DS/Lime3DS
synced 2024-11-01 04:37:52 +00:00
Merge pull request #3800 from liushuyu/master
citra: correct regex for matching nickname
This commit is contained in:
commit
174241ff90
1 changed files with 1 additions and 1 deletions
|
@ -199,7 +199,7 @@ int main(int argc, char** argv) {
|
|||
address = match[3];
|
||||
if (!match[4].str().empty())
|
||||
port = std::stoi(match[4]);
|
||||
std::regex nickname_re("^[a-zA-Z0-9._- ]+$");
|
||||
std::regex nickname_re("^[a-zA-Z0-9._\\- ]+$");
|
||||
if (!std::regex_match(nickname, nickname_re)) {
|
||||
std::cout
|
||||
<< "Nickname is not valid. Must be 4 to 20 alphanumeric characters.\n";
|
||||
|
|
Loading…
Reference in a new issue