2010-11-21, 07:51 PM
UJB Before I forget following up on this thread http://forums.gbpvr.com//showthread.php?...PG-updates there is a problem in
I had fixed but forgot to tell you by using
Martin
Code:
Line 301: XmlNode EPGHour = SettingsHelper.GetInstance().GetSettingsNode("/Settings/General/EPGUpdateHour");
Line 302: Logger.Info("Checking if it is at least one hour past the EPG update for today.... ");
Line 303: if (DateTime.Now.Hour + 1 > Convert.ToInt32(EPGHour.InnerText))
Line 304: {
Line 305: Logger.Info("It is greater than one hour since todays EPG update.... ");
I had fixed but forgot to tell you by using
Code:
if (EPGHour.InnerText != "None" && DateTime.Now.Hour + 1 > Convert.ToInt32(EPGHour.InnerText))
Martin