From 11f713dd854ae0bae3e7e64c1de069994e4d40b1 Mon Sep 17 00:00:00 2001 From: Adam Sutton Date: Mon, 20 Aug 2012 14:09:49 +0100 Subject: [PATCH] Ensure EPG modules are properly init before dvb hardware and thus mux scanning can start. Else setups with single mux on adapter (who on earth would do that!) will not get any EPG data. --- src/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.c b/src/main.c index bb7783e2..69b6712a 100644 --- a/src/main.c +++ b/src/main.c @@ -395,6 +395,9 @@ main(int argc, char **argv) channels_init(); + epggrab_init(); + epg_init(); + access_init(createdefault); tcp_server_init(); @@ -415,9 +418,6 @@ main(int argc, char **argv) capmt_init(); - epggrab_init(); - epg_init(); - dvr_init(); htsp_init();