Changeset

7226:9e380d145ad1

mod_welcome: Use type-specific config API
author Kim Alvefur <zash@zash.se>
date Wed, 02 Mar 2016 16:42:59 +0100
parents 7224:07a4c807a94a
children 7227:c6f9d694d778
files plugins/mod_welcome.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_welcome.lua	Wed Mar 02 16:32:37 2016 +0100
+++ b/plugins/mod_welcome.lua	Wed Mar 02 16:42:59 2016 +0100
@@ -7,7 +7,7 @@
 --
 
 local host = module:get_host();
-local welcome_text = module:get_option("welcome_message") or "Hello $username, welcome to the $host IM server!";
+local welcome_text = module:get_option_string("welcome_message") or "Hello $username, welcome to the $host IM server!";
 
 local st = require "util.stanza";