summaryrefslogtreecommitdiff
path: root/src/mod_vcard_xupdate.erl
diff options
context:
space:
mode:
authorEvgeniy Khramtsov <ekhramtsov@process-one.net>2016-07-06 14:58:48 +0300
committerEvgeniy Khramtsov <ekhramtsov@process-one.net>2016-07-06 14:58:48 +0300
commit4220a2b98cf08fda4445074f89e5bec5c5c06736 (patch)
tree1c97336460c5edf77c1beffe7f2cba0e35dd8498 /src/mod_vcard_xupdate.erl
parentAdd missing '/' for jid matching from commit e300f80 (diff)
Make modules loading in a dependent order (#1191)
Diffstat (limited to 'src/mod_vcard_xupdate.erl')
-rw-r--r--src/mod_vcard_xupdate.erl5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mod_vcard_xupdate.erl b/src/mod_vcard_xupdate.erl
index 041b0b64..f2101df9 100644
--- a/src/mod_vcard_xupdate.erl
+++ b/src/mod_vcard_xupdate.erl
@@ -13,7 +13,7 @@
-export([start/2, stop/1]).
-export([update_presence/3, vcard_set/3, export/1,
- import/1, import/3, mod_opt_type/1]).
+ import/1, import/3, mod_opt_type/1, depends/2]).
-include("ejabberd.hrl").
-include("logger.hrl").
@@ -46,6 +46,9 @@ stop(Host) ->
vcard_set, 100),
ok.
+depends(_Host, _Opts) ->
+ [].
+
%%====================================================================
%% Hooks
%%====================================================================