From 434fc5de6acf40bb64b952044d01756ae110e63f Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Thu, 12 Feb 2015 13:17:30 +0100 Subject: [PATCH] main: move the http server registration to the end of the initialization phase --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index bb8d5625..41e9dada 100644 --- a/src/main.c +++ b/src/main.c @@ -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); @@ -871,6 +870,7 @@ main(int argc, char **argv) dbus_server_start(); + http_server_register(); htsp_register();