Fix bug in CategoryTrackListQuery where filter value was not being

respected.
This commit is contained in:
casey langen 2022-10-25 21:49:08 -07:00
parent 528a101428
commit b3373b716e

View File

@ -100,6 +100,7 @@ CategoryTrackListQuery::CategoryTrackListQuery(
this->durations = std::make_shared<std::map<size_t, size_t>>();
this->hash = category::Hash(predicates);
this->sortType = sortType;
this->filter = filter;
category::SplitPredicates(predicates, this->regular, this->extended);
this->ScanPredicateListsForQueryType();