* 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.
This commit is contained in:
parent
4f4c7ef3b4
commit
8e5d0c68a8
2 changed files with 7 additions and 2 deletions
5
debian/changelog
vendored
5
debian/changelog
vendored
|
@ -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.
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue