There is a bug in taskscheduler.cs at line 43. It is:
if (t.Name.StartsWith("MPGuideScheduler"))
and should be:
if ((t!=null) && (t.Name.StartsWith("MPGuideScheduler")))
Please fix this.
Thanks for this nice piece of shit.
Frank
if (t.Name.StartsWith("MPGuideScheduler"))
and should be:
if ((t!=null) && (t.Name.StartsWith("MPGuideScheduler")))
Please fix this.
Thanks for this nice piece of shit.
Frank