Determining if a tag is fuzzy should check for + too
This commit is contained in:
parent
fab490cf60
commit
d53fc3036d
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ wml_tag::wml_tag(const config& cfg)
|
|||
, links_()
|
||||
, conditions_()
|
||||
, super_refs_()
|
||||
, fuzzy_(name_.find_first_of("*?") != std::string::npos)
|
||||
, fuzzy_(name_.find_first_of("*?+") != std::string::npos)
|
||||
, any_tag_(cfg["any_tag"].to_bool())
|
||||
{
|
||||
if(max_ < 0) {
|
||||
|
|
Loading…
Add table
Reference in a new issue