Skip to content

Commit

Permalink
Fix DVR::AddRecordSchedule() to save the start/end times.
Browse files Browse the repository at this point in the history
Fixes #11753
  • Loading branch information
gigem committed Aug 16, 2013
1 parent 3fca292 commit f64d715
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions mythtv/programs/mythbackend/services/dvr.cpp
Expand Up @@ -557,6 +557,11 @@ uint Dvr::AddRecordSchedule (
rule.m_subtitle = sSubtitle;
rule.m_description = sDescription;

rule.m_startdate = recstartts.date();
rule.m_starttime = recstartts.time();
rule.m_enddate = recendts.date();
rule.m_endtime = recendts.time();

rule.m_type = recTypeFromString(sType);
rule.m_searchType = searchTypeFromString(sSearchType);
rule.m_dupMethod = dupMethodFromString(sDupMethod);
Expand Down

0 comments on commit f64d715

Please sign in to comment.