mirror of
https://github.com/zulip/zulip.git
synced 2026-07-15 21:03:26 +08:00
Fix improperly case-sensitive narrowing by subject.
(imported from commit 24403f0815e46f21000f7d5a5b59bfdfe3448ddf)
This commit is contained in:
parent
1e9a85ff05
commit
36bb39ede9
@ -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)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user