From 8925083ea7b74c192d2a9fd9b65ab72c1350b271 Mon Sep 17 00:00:00 2001 From: andyb2000 Date: Wed, 6 Mar 2013 21:17:28 +0000 Subject: [PATCH] Add flush command to simplewebui to trigger a write to disk of the epgdb --- src/webui/simpleui.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/webui/simpleui.c b/src/webui/simpleui.c index 1601ab18..af768ae1 100644 --- a/src/webui/simpleui.c +++ b/src/webui/simpleui.c @@ -483,4 +483,5 @@ simpleui_start(void) http_path_add("/eventinfo", NULL, page_einfo, ACCESS_SIMPLE); http_path_add("/pvrinfo", NULL, page_pvrinfo, ACCESS_SIMPLE); http_path_add("/status.xml", NULL, page_status, ACCESS_SIMPLE); + http_path_add("/epgflush", NULL, epg_save, ACCESS_SIMPLE); }