aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElias Fleckenstein <eliasfleckenstein@web.de>2021-01-11 14:27:16 +0100
committerElias Fleckenstein <eliasfleckenstein@web.de>2021-01-11 14:27:16 +0100
commit946f3030fc0728de15620896e08ed7e10696c11b (patch)
tree72a35227cb0d5c399d2434872bbe94e23fbfe4da
parentb2f629d8d3eaef9d239e9c9bb35d70d79df99228 (diff)
parentfcb3ed840a5e66e6d37b27effe30d8d723a7da59 (diff)
downloaddragonfireclient-946f3030fc0728de15620896e08ed7e10696c11b.tar.xz
Merge branch 'master' of https://github.com/minetest/minetest
-rw-r--r--builtin/mainmenu/common.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/mainmenu/common.lua b/builtin/mainmenu/common.lua
index 782d6973f..2bd8aa8a5 100644
--- a/builtin/mainmenu/common.lua
+++ b/builtin/mainmenu/common.lua
@@ -87,7 +87,7 @@ function render_serverlist_row(spec, is_favorite)
if spec.name then
text = text .. core.formspec_escape(spec.name:trim())
elseif spec.address then
- text = text .. spec.address:trim()
+ text = text .. core.formspec_escape(spec.address:trim())
if spec.port then
text = text .. ":" .. spec.port
end