diff options
author | Kim Alvefur <zash@zash.se> | 2014-02-06 10:44:21 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-02-06 10:44:21 +0100 |
commit | 279b6cb27f71ded4e11976f7af799eeaf6b4119e (patch) | |
tree | 9b20c61e4045a49607e0a80080a56d0aa66e0241 /plugins/mod_motd.lua | |
parent | 6b50bafcbdcd3e630d35f3dcf44cfae817589328 (diff) | |
download | prosody-279b6cb27f71ded4e11976f7af799eeaf6b4119e.tar.gz prosody-279b6cb27f71ded4e11976f7af799eeaf6b4119e.zip |
mod_motd: Strip indentation only, leave multiple newlines
Diffstat (limited to 'plugins/mod_motd.lua')
-rw-r--r-- | plugins/mod_motd.lua | 2 |
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; |