mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 04:18:08 +01:00
emacs: content-type comparison should be case insensitive.
The function notmuch-match-content-type was comparing content types case sensitively. Fix it so it tests case insensitively. This fixes a bug where emacs would not include any body when replying to a message with content-type TEXT/PLAIN.
This commit is contained in:
parent
46e73fe539
commit
f57ef64302
1 changed files with 3 additions and 2 deletions
|
@ -185,8 +185,9 @@ the user hasn't set this variable with the old or new value."
|
|||
(st2 (notmuch-split-content-type t2)))
|
||||
(if (or (string= (cadr st1) "*")
|
||||
(string= (cadr st2) "*"))
|
||||
(string= (car st1) (car st2))
|
||||
(string= t1 t2))))
|
||||
;; Comparison of content types should be case insensitive.
|
||||
(string= (downcase (car st1)) (downcase (car st2)))
|
||||
(string= (downcase t1) (downcase t2)))))
|
||||
|
||||
(defvar notmuch-multipart/alternative-discouraged
|
||||
'(
|
||||
|
|
Loading…
Reference in a new issue