In both streamdev and vnsi the EPG offset doesn't seem to work.
I am 6 hours behind GMT, however, when XBMC first loads it doesn't load epg entries for 5 hours. So at 7am, the first program to show up in the epg is at 12pm.
I can fix this by commenting out the TimeOffset in:
~/xbmc/addons/PVRClient.cpp
Code
PVR_ERROR CPVRClient::GetEPGForChannel(const cPVRChannelInfoTag &channelinfo, cPVREpg *epg, time_t start, time_t end, bool toDB/* = false*/)
{
CSingleLock lock(m_critSection);
PVR_ERROR ret = PVR_ERROR_UNKOWN;
if (m_ReadyToUse)
{
try
{
/* if (start)
start -= m_iTimeCorrection;
if (end)
end -= m_iTimeCorrection; */
PVR_CHANNEL tag;
PVRHANDLE_STRUCT handle;
Display More
Not sure how to get this fixed, I have been trying to point it out for a few months now..