Skip to content

Commit 0c3ee1a

Browse files
committed
Handle case insensitive filters on count
1 parent 1206926 commit 0c3ee1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/galaxy/managers/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ def count(self, filters=None, **kwargs):
395395
If the filters include functional filters, this function will raise an exception as they might cause
396396
performance issues.
397397
"""
398-
# TODO: requires case sensitivity fix from https://github.com/galaxyproject/galaxy/pull/16036
398+
self._handle_filters_case_sensitivity(filters)
399399
orm_filters, fn_filters = self._split_filters(filters)
400400
if fn_filters:
401401
raise exceptions.RequestParameterInvalidException("Counting with functional filters is not supported.")

0 commit comments

Comments
 (0)