[DB] Replaced OR .. OR ... by IN list

This commit is contained in:
epoupon
2015-10-16 18:40:41 +02:00
parent 511696fcc0
commit 0d967f035a
3 changed files with 35 additions and 10 deletions
+1 -1
View File
@@ -178,7 +178,7 @@ TableFilterArtist::getConstraint(SearchFilter& filter)
Artist::id_type id = _queryModel.resultRow( index.row() ).get<0>();
filter.idMatch[Database::SearchFilter::Field::Artist].push_back(id);
filter.idMatch[SearchFilter::Field::Artist].push_back(id);
}
}