aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-02-06 10:44:21 +0100
committerKim Alvefur <zash@zash.se>2014-02-06 10:44:21 +0100
commitb3971532af8c7cee385bd5b2bf3efc61332a43b8 (patch)
tree9b20c61e4045a49607e0a80080a56d0aa66e0241
parentacedfc3c4a1df737fee8f4248d046fe077987fa9 (diff)
downloadprosody-b3971532af8c7cee385bd5b2bf3efc61332a43b8.tar.gz
prosody-b3971532af8c7cee385bd5b2bf3efc61332a43b8.zip
mod_motd: Strip indentation only, leave multiple newlines
-rw-r--r--plugins/mod_motd.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_motd.lua b/plugins/mod_motd.lua
index ed78294b..3dd6b816 100644
--- a/plugins/mod_motd.lua
+++ b/plugins/mod_motd.lua
@@ -15,7 +15,7 @@ if not motd_text then return; end
local st = require "util.stanza";
-motd_text = motd_text:gsub("^%s*(.-)%s*$", "%1"):gsub("\n%s+", "\n"); -- Strip indentation from the config
+motd_text = motd_text:gsub("^%s*(.-)%s*$", "%1"):gsub("\n[ \t]+", "\n"); -- Strip indentation from the config
module:hook("presence/bare", function (event)
local session, stanza = event.origin, event.stanza;