Open skinkie opened 10 years ago
calendar_t realtime_mask = 1 << ((time(NULL) - router->tdata->calendar_start_time) / SEC_IN_ONE_DAY);
...because we apply the realtime_mask with respect to today. Which is not the case for any artificial created feed.
The workaround is to set realtime_mask = 1; but obviously requires recompilation.
realtime_mask = 1;
...because we apply the realtime_mask with respect to today. Which is not the case for any artificial created feed.