diff --git a/zephyr/views.py b/zephyr/views.py index 87f599229c..ada4b93158 100644 --- a/zephyr/views.py +++ b/zephyr/views.py @@ -507,7 +507,7 @@ class NarrowBuilder(object): return Q(recipient=recipient) def by_subject(self, operand): - return Q(subject=operand) + return Q(subject__iexact=operand) def by_sender(self, operand): return Q(sender__user__email__iexact=operand)