Skip to content

Commit

Permalink
Support multiple values in filter separated by comma
Browse files Browse the repository at this point in the history
  • Loading branch information
Jose Luis Dorado committed Nov 20, 2017
1 parent 87b9585 commit 5322444
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -180,7 +180,7 @@ private ArrayList<Filter> buildFilters() {
for (final String filterParam : getFilterParams()) {
final String[] x = filterParam.split("=", 2);
if (!"".equals(x[0]) && !"".equals(x[1])) {
filters.add(new Filter(x[0]).withValues(x[1]));
filters.add(new Filter(x[0]).withValues(x[1].split(",")));
}
}
}
Expand Down

0 comments on commit 5322444

Please sign in to comment.