diff options
author | Kim Alvefur <zash@zash.se> | 2014-05-28 21:52:57 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-05-28 21:52:57 +0200 |
commit | ed4cff4baa6a091923b8af119dc6dee47e404453 (patch) | |
tree | 421617f4129f498563ba4cc595542e1c4962b62f /plugins | |
parent | 72a1bf0bb532f8f8b6b66d4f67c41bb309cc9bbb (diff) | |
download | prosody-ed4cff4baa6a091923b8af119dc6dee47e404453.tar.gz prosody-ed4cff4baa6a091923b8af119dc6dee47e404453.zip |
mod_pep_plus: Expose get_pep_service()
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_pep_plus.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_pep_plus.lua b/plugins/mod_pep_plus.lua index 4a74e437..ee57e647 100644 --- a/plugins/mod_pep_plus.lua +++ b/plugins/mod_pep_plus.lua @@ -52,7 +52,7 @@ local function get_broadcaster(name) return simple_broadcast; end -local function get_pep_service(name) +function get_pep_service(name) if services[name] then return services[name]; end |