]> granicus.if.org Git - ejabberd/commitdiff
Start ext_mod before module as it's setup contrib path
authorChristophe Romain <christophe.romain@process-one.net>
Fri, 20 Mar 2015 14:06:02 +0000 (15:06 +0100)
committerChristophe Romain <christophe.romain@process-one.net>
Fri, 20 Mar 2015 14:06:02 +0000 (15:06 +0100)
src/ejabberd_app.erl

index e892128b1161a2741b8ba32fd4a57f738de6c713..4c821cd980baf88f12701233985dcf5421209ad3 100644 (file)
@@ -65,8 +65,8 @@ start(normal, _Args) ->
     %ejabberd_debug:eprof_start(),
     %ejabberd_debug:fprof_start(),
     maybe_add_nameservers(),
-    start_modules(),
     ext_mod:start(),
+    start_modules(),
     ejabberd_listener:start_listeners(),
     ?INFO_MSG("ejabberd ~s is started in the node ~p", [?VERSION, node()]),
     Sup;