Added wildcard key (*) for filters (closes #1309)

This commit is contained in:
Benoit Blanchon
2020-09-28 21:11:38 +02:00
parent 726f8be341
commit 8385d5fa3a
3 changed files with 11 additions and 1 deletions

View File

@ -33,7 +33,7 @@ class Filter {
if (_variant == true) // "true" means "allow recursively"
return *this;
else
return Filter(_variant[key]);
return Filter(_variant[key] | _variant["*"]);
}
private: