mod_welcome: Pass default text to config API as default value

This commit is contained in:
Kim Alvefur 2016-03-02 16:43:42 +01:00
parent b33fe456f8
commit 89d0897007

View file

@ -7,7 +7,7 @@
--
local host = module:get_host();
local welcome_text = module:get_option_string("welcome_message") or "Hello $username, welcome to the $host IM server!";
local welcome_text = module:get_option_string("welcome_message", "Hello $username, welcome to the $host IM server!");
local st = require "util.stanza";