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:
Lars Ingebrigtsen 2021-11-06 19:25:42 +01:00
parent f05b8a939b
commit 6243a43ac2

View file

@ -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)
"")))