Fix search string generation in nnimap-make-thread-query
* lisp/gnus/nnimap.el (nnimap-make-thread-query): Remove text properties before constructing the search string (bug#49926).
This commit is contained in:
parent
f05b8a939b
commit
6243a43ac2
1 changed files with 1 additions and 1 deletions
|
@ -2287,7 +2287,7 @@ Return the server's response to the SELECT or EXAMINE command."
|
|||
nnimap-incoming-split-list)))
|
||||
|
||||
(defun nnimap-make-thread-query (header)
|
||||
(let* ((id (mail-header-id header))
|
||||
(let* ((id (substring-no-properties (mail-header-id header)))
|
||||
(refs (split-string
|
||||
(or (mail-header-references header)
|
||||
"")))
|
||||
|
|
Loading…
Add table
Reference in a new issue