Merge pull request 'fix regex version' (#388) from wowario/wownero:vers into dev-v0.10

Reviewed-on: https://git.wownero.com/wownero/wownero/pulls/388
This commit is contained in:
wowario 2021-06-17 18:10:01 +00:00
commit 2016b83300

View file

@ -45,7 +45,7 @@ namespace rpc
bool is_version_string_valid(const std::string& str) bool is_version_string_valid(const std::string& str)
{ {
return std::regex_match(str, std::regex( return std::regex_match(str, std::regex(
"^\\d{1,2}(\\.\\d{1,2}){3}(-(release|[0-9a-f]{9}))?$", "^.*$",
std::regex_constants::nosubs std::regex_constants::nosubs
)); ));
} }