diff options
Diffstat (limited to 'src/mod_http_bind.erl')
-rw-r--r-- | src/mod_http_bind.erl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mod_http_bind.erl b/src/mod_http_bind.erl index 1a07867e0..9a3a379f7 100644 --- a/src/mod_http_bind.erl +++ b/src/mod_http_bind.erl @@ -37,7 +37,7 @@ -behaviour(gen_mod). --export([start/2, stop/1, process/2, mod_opt_type/1]). +-export([start/2, stop/1, process/2, mod_opt_type/1, depends/2]). -include("ejabberd.hrl"). -include("logger.hrl"). @@ -109,6 +109,8 @@ mod_opt_type(max_pause) -> fun (I) when is_integer(I), I > 0 -> I end; mod_opt_type(_) -> [max_inactivity, max_pause]. +depends(_Host, _Opts) -> + []. %%%---------------------------------------------------------------------- %%% Help Web Page |