mod_welcome: Pass default text to config API as default value
authorKim Alvefur <zash@zash.se>
Wed, 2 Mar 2016 15:43:42 +0000 (16:43 +0100)
committerKim Alvefur <zash@zash.se>
Wed, 2 Mar 2016 15:43:42 +0000 (16:43 +0100)
plugins/mod_welcome.lua

index cd5118a74506a03311b572a180f5fb62d432b83c..d74643de174ca4ff46fec5fe1ec51977f3148b28 100644 (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";