mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-31 17:03:30 +02:00
Bug Fix - #401
- Fixed bug that ignored the search.case.sensitive configuration setting when filtering on project names (thank to John Florian).
This commit is contained in:
parent
a31e9a5a3c
commit
804b6a8cdb
2 changed files with 4 additions and 3 deletions
|
@ -537,7 +537,7 @@ bool Att::match (const Att& other) const
|
|||
if (other.mValue.length () < mValue.length ())
|
||||
return false;
|
||||
|
||||
if (!compare (mValue, other.mValue.substr (0, mValue.length ())))
|
||||
if (!compare (mValue, other.mValue.substr (0, mValue.length ()), (bool) case_sensitive))
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue