# HG changeset patch
# User Kim Alvefur <zash@zash.se>
# Date 1401317913 -7200
# Node ID 808950ab007beb51690ce90cbe99fe0db7a13117
# Parent  877dc87539ffd4fa83be984c8fe0e5d1e68de49a
mod_profile: Integrate with mod_pep_plus by default

diff -r 877dc87539ff -r 808950ab007b 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