Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
main: move the http server registration to the end of the initializat…
…ion phase
  • Loading branch information
perexg committed Mar 11, 2015
1 parent 96898a6 commit 434fc5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.c
Expand Up @@ -854,7 +854,6 @@ main(int argc, char **argv)
#endif

tcp_server_init();
http_server_register();
webui_init(opt_xspf);
#if ENABLE_UPNP
upnp_server_init(opt_bindaddr);
Expand All @@ -871,6 +870,7 @@ main(int argc, char **argv)

dbus_server_start();

http_server_register();
htsp_register();


Expand Down

0 comments on commit 434fc5d

Please sign in to comment.