Merge 0.9->0.10

This commit is contained in:
Kim Alvefur 2014-02-06 10:48:41 +01:00
commit 73f394eec5

View file

@ -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;