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); }