This is an automated email from the ASF dual-hosted git repository.
humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git
The following commit(s) were added to refs/heads/master by this push:
new cfbf43d Shorten URL
cfbf43d is described below
commit cfbf43dcbf974d0520138a07efbdda40aa2c73cd
Author: Daniel Gruno <[email protected]>
AuthorDate: Fri Nov 20 12:59:33 2020 +0100
Shorten URL
---
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 691d27f..65e4cf2 100644
--- a/webui/js/source/listview-threaded.js
+++ b/webui/js/source/listview-threaded.js
@@ -101,7 +101,7 @@ function listview_threaded_element(thread, idx) {
let eml = find_email(thread.tid);
if (!eml) { return; }
- let link_wrapper = new HTML('a', {href:'thread.html/%s'.format(eml.id),
onclick:'return(expand_email_threaded(%u));'.format(idx)});
+ let link_wrapper = new HTML('a', {href:'thread/%s'.format(eml.id),
onclick:'return(expand_email_threaded(%u));'.format(idx)});
let element = new HTML('div', { class: "listview_email_flat"}, " ");
let date = new Date(eml.epoch*1000.0);