Software /
code /
prosody-modules
Changeset
1420:808950ab007b
mod_profile: Integrate with mod_pep_plus by default
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 29 May 2014 00:58:33 +0200 |
parents | 1419:877dc87539ff |
children | 1421:295c30e44ba8 |
files | mod_profile/mod_profile.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_profile/mod_profile.lua Wed May 28 22:02:27 2014 +0200 +++ b/mod_profile/mod_profile.lua Thu May 29 00:58:33 2014 +0200 @@ -8,7 +8,7 @@ local sha1 = require"util.hashes".sha1; local pep_plus; -if module:get_host_type() == "local" and module:get_option_boolean("vcard_to_pep") then +if module:get_host_type() == "local" and module:get_option_boolean("vcard_to_pep", true) then pep_plus = module:depends"pep_plus"; end