extend MQTT integration support with type_switch

This commit is contained in:
John
2022-01-22 22:21:59 +01:00
parent c499c4e74b
commit 17b1bdf4a0
3 changed files with 82 additions and 11 deletions
+1 -1
View File
@@ -130,7 +130,7 @@ bool FileReader::matches(const string& input, const string& search, bool ignoreC
}
string searchSub = search;
tolower(&inputSub);
return matches(inputSub, searchSub, false, false);
return matches(inputSub, searchSub, false, true);
}
// walk through alternatives
size_t from = 0;