Fix crash with multiple range criterias

This commit is contained in:
smoogipoo 2019-09-19 17:36:42 +09:00
parent 96ea507320
commit 5120d82ef8
1 changed files with 1 additions and 1 deletions

View File

@ -235,7 +235,7 @@ private void applyQueries(FilterCriteria criteria, ref string query)
break;
}
query = query.Remove(match.Index, match.Length);
query = query.Replace(match.ToString(), "");
}
}