Add at symbol as prefix on maillists view

This commit is contained in:
Athozus 2023-03-01 18:23:59 +01:00
parent 6453c56def
commit 2656936a6f
No known key found for this signature in database
GPG key ID: B50895022E8484BF

View file

@ -200,7 +200,7 @@ function mail.show_maillists(name)
for _, maillist in ipairs(maillists) do for _, maillist in ipairs(maillists) do
formspec[#formspec + 1] = "," formspec[#formspec + 1] = ","
formspec[#formspec + 1] = "," formspec[#formspec + 1] = ","
formspec[#formspec + 1] = minetest.formspec_escape(maillist.name) formspec[#formspec + 1] = "@" .. minetest.formspec_escape(maillist.name)
formspec[#formspec + 1] = "," formspec[#formspec + 1] = ","
if maillist.desc ~= "" then if maillist.desc ~= "" then
if string.len(maillist.desc) > 30 then if string.len(maillist.desc) > 30 then