Changeset 4337

Show
Ignore:
Timestamp:
03/16/10 23:23:15 (6 months ago)
Author:
andoma
Message:
  • 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.
Location:
trunk/tvheadend
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/tvheadend/debian/changelog

    r4334 r4337  
    1818  * Add parsing of episode information from XMLTV and display it in the 
    1919    WebUI EPG 
     20 
     21  * A bug caused the 'Automatic Recorder' tab grid not to reload 
     22    entries upon external change (Such as when a channel got deleted 
     23    or when a new auto recording was created from the EPG view). This 
     24    is now fixed. 
    2025 
    2126hts-tvheadend (2.10) hts; urgency=high 
  • trunk/tvheadend/src/dvr/dvr_autorec.c

    r4336 r4337  
    426426   
    427427  m = htsmsg_create_map(); 
    428   htsmsg_add_u32(m, "asyncreload", 1); 
     428  htsmsg_add_u32(m, "reload", 1); 
    429429  notify_by_msg("autorec", m); 
    430430 
     
    482482  /* Notify web clients that we have messed with the tables */ 
    483483  m = htsmsg_create_map(); 
    484   htsmsg_add_u32(m, "asyncreload", 1); 
     484  htsmsg_add_u32(m, "reload", 1); 
    485485  notify_by_msg("autorec", m); 
    486486}