Parser: Fix segfault in command extraction
Este cometimento está contido em:
ascendente
89c662385d
cometimento
f349c7dc00
@ -72,7 +72,11 @@ std::string Parser::extractCommand(std::string cmdname, std::string content) con
|
||||
if(std::regex_match(content, match, reg))
|
||||
{
|
||||
|
||||
return match.str(2);
|
||||
if(match.size() > 1)
|
||||
{
|
||||
return match.str(2);
|
||||
|
||||
}
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
Carregando…
Criar uma nova questão referindo esta
Bloquear um utilizador