Skip to content

Instantly share code, notes, and snippets.

@fiveisalive
Created October 21, 2011 06:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fiveisalive/1303227 to your computer and use it in GitHub Desktop.
Save fiveisalive/1303227 to your computer and use it in GitHub Desktop.
patch for EPG
diff --git a/xbmc/epg/EpgContainer.cpp b/xbmc/epg/EpgContainer.cpp
index 43cdcaa..54549c5 100644
--- a/xbmc/epg/EpgContainer.cpp
+++ b/xbmc/epg/EpgContainer.cpp
@@ -250,7 +253,8 @@ bool CEpgContainer::UpdateEntry(const CEpg &entry, bool bUpdateDatabase /* = fal
bReturn = epg ? epg->Update(entry, bUpdateDatabase) : false;
m_bPreventUpdates = false;
- CDateTime::GetCurrentDateTime().GetAsUTCDateTime().GetAsTime(m_iNextEpgUpdate);
+ //CDateTime::GetCurrentDateTime().GetAsUTCDateTime().GetAsTime(m_iNextEpgUpdate);
+ CDateTime::GetCurrentDateTime().GetAsTime(m_iNextEpgUpdate);
lock.Leave();
return bReturn;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment