mod_profile: Integrate with mod_pep_plus by default
authorKim Alvefur <zash@zash.se>
Thu, 29 May 2014 00:58:33 +0200
changeset 1420 808950ab007b
parent 1419 877dc87539ff
child 1421 295c30e44ba8
mod_profile: Integrate with mod_pep_plus by default
mod_profile/mod_profile.lua
--- 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