From 8e5d0c68a8bb23002da269c6d95328a1820a3152 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96man?= Date: Tue, 16 Mar 2010 22:23:15 +0000 Subject: [PATCH] * A bug caused the 'Automatic Recorder' tab grid not to reload entries upon external change (Such as when a channel got deleted or when a new auto recording was created from the EPG view). This is now fixed. --- debian/changelog | 5 +++++ src/dvr/dvr_autorec.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index b60b56b7..8256c1a0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -18,6 +18,11 @@ hts-tvheadend (2.11-WIP) hts; urgency=low * Add parsing of episode information from XMLTV and display it in the WebUI EPG + * A bug caused the 'Automatic Recorder' tab grid not to reload + entries upon external change (Such as when a channel got deleted + or when a new auto recording was created from the EPG view). This + is now fixed. + hts-tvheadend (2.10) hts; urgency=high * Fix a crash in HTSP server. diff --git a/src/dvr/dvr_autorec.c b/src/dvr/dvr_autorec.c index d41f98c8..2a818c1e 100644 --- a/src/dvr/dvr_autorec.c +++ b/src/dvr/dvr_autorec.c @@ -425,7 +425,7 @@ dvr_autorec_add(const char *title, const char *channel, /* Notify web clients that we have messed with the tables */ m = htsmsg_create_map(); - htsmsg_add_u32(m, "asyncreload", 1); + htsmsg_add_u32(m, "reload", 1); notify_by_msg("autorec", m); dvr_autorec_changed(dae); @@ -481,6 +481,6 @@ autorec_destroy_by_channel(channel_t *ch) /* Notify web clients that we have messed with the tables */ m = htsmsg_create_map(); - htsmsg_add_u32(m, "asyncreload", 1); + htsmsg_add_u32(m, "reload", 1); notify_by_msg("autorec", m); }