Changes between Initial Version and Version 1 of Ticket #11476, comment 4
- Timestamp:
- Jan 8, 2014, 1:58:32 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11476, comment 4
initial v1 1 1 Commit 12c443eb1cd22cecd257ea61984fa2dfb31d4992 on the fixes/0.26 branch is what broke over-the-air broadcast scheduling updates for me. Specifically the additions to DVBSignalMonitor::UpdateValues(void) 2 2 3 {{{ 3 4 diff --git a/mythtv/libs/libmythtv/dvbsignalmonitor.cpp b/mythtv/libs/libmythtv/dvbsignalmonitor.cpp 4 5 index 1fa010e..75cc94a 100644 … … 24 25 if (!running || exit) 25 26 return; 26 27 }}} 27 28 I commented out the added lines and this compiled commit worked as hoped, with over-the-air scheduling updating as expected. I learned in testing that all station schedules update at a minimum every three hours, and extend out at least ten hours. 28 29