mirror of
https://github.com/mt-mods/mail.git
synced 2025-04-30 16:31:43 -04:00
Add at symbol as prefix on maillists view
This commit is contained in:
parent
6453c56def
commit
2656936a6f
1 changed files with 1 additions and 1 deletions
2
gui.lua
2
gui.lua
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue