improve filter string validation error message

This commit is contained in:
RickyRister 2024-12-11 21:52:29 -08:00
parent 315cbc0925
commit f20032a22f

View file

@ -365,7 +365,7 @@ FilterString::FilterString(const QString &expr)
};
if (!search.parse(ba.data(), result)) {
qDebug() << "Filter string error" << _error;
qDebug() << "Filter string error for" << expr << ";" << _error;
result = [](CardData) -> bool { return false; };
}
}