openidec

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 5134c2c8482071c07dbfc6a27f1deec1c0abf0e2
parent f45555ec8d58a2227422d95ba70db84b2334d3d1
Author: Peter Kosyh <p.kosyh@gmail.com>
Date:   Tue,  8 Sep 2020 19:10:52 +0100

fix in attachments

Diffstat:
Mii-node/web.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ii-node/web.go b/ii-node/web.go @@ -776,7 +776,7 @@ func msg_text(m *ii.Msg) string { if fname == "" { fname = "file" } - f += fmt.Sprintf("<a class=\"attach\" href=\"%s/base64\">%s</a><br>\n", m.MsgId, str_esc(fname)) + f += fmt.Sprintf("<a class=\"attach\" href=\"/%s/base64\">%s</a><br>\n", m.MsgId, str_esc(fname)) return f } else { l = msg_esc(l)