This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git

commit ff56c7e85b95f818eeb37d16f800c688feab59a8
Author: Sebb <[email protected]>
AuthorDate: Wed Dec 1 17:47:12 2021 +0000

    Display of listname on search list
    
    Don't adjust subject unless necessary
    This relates to #166
---
 webui/js/source/listview-threaded.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/webui/js/source/listview-threaded.js 
b/webui/js/source/listview-threaded.js
index 3c5b91a..629dfed 100644
--- a/webui/js/source/listview-threaded.js
+++ b/webui/js/source/listview-threaded.js
@@ -154,7 +154,7 @@ function listview_threaded_element(thread, idx) {
     });
 
     let suba = new HTML('a', {}, eml.subject === '' ? '(No subject)' : 
eml.subject);
-    if (G_current_json.list.match(/\*/) || G_current_json.domain == '*') {
+    if (G_current_listmode_compact && showList) {
         let kbd = new HTML('kbd', {
             class: 'listview_kbd'
         }, eml.list_raw.replace(/[<>]/g, '').replace('.', '@', 1))

Reply via email to