addToNowRunning(p, programs, additional);
Program nextProgram = null;
if (j < programCount - 1) {
nextProgram = today.getProgramAt(j + 1);
} else {
ChannelDayProgram tomorrow = TvDataBase.getInstance().getDayProgram(currentDate.addDays(1), channel);
if (tomorrow != null && tomorrow.getProgramCount() > 0) {
nextProgram = tomorrow.getProgramAt(0);
}
}
if (nextProgram != null) {