Code to band aid dvbviewer EPG
#1
Bug 
line 220:
-----------
Code:
TiXmlNode *xEvents = xEntry->FirstChild("events");
    if (xEvents)
    {
      XMLUtils::GetString(xEvents, "event", entry.strPlotOutline);
      if (!entry.strPlotOutline.empty() && entry.strPlot.empty())
        entry.strPlot = entry.strPlotOutline;
    }
line: 227
------------

Change to
---------------
Code:
TiXmlNode *xEvents = xEntry->FirstChild("events");
    if (xEvents)
    {
      XMLUtils::GetString(xEvents, "event", entry.strPlotOutline);
    }
    entry.strPlot = entry.strPlotOutline;

sorry it is quiet a filthy work around and strPlotOutline should be checked for emptyness/null but it does seem to solve the problem
remember to Reset your EPG data in LiveTV Smile

Image
#2
  • There's a issue section in my github repo.
  • Please use patch format for patches.
  • There's absolutely no description of the bug/behavior you want to fix in your whole post. I'm probably the only one who knows what issue you're referring too.
  • The code you're referring to is from before January. Since v1.9.28 / v1.10.28 there's a support for putting the outline before plot in the advanced section

I'll therefor close your thread in a few days.

Logout Mark Read Team Forum Stats Members Help
Code to band aid dvbviewer EPG0