ShortText == Description

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Boguslaw Juza wrote:
>     Hi!
> 
> There are some channels witch EPG ShortText is the same as Description
> (and a few sentences long). So I'm suggesting little change in 
> skinclassic.c (and probably in skinsttng.c too):
> ...

Doesn't the "EPG bugfix #7" already take care of this:

   // Some channels put the same information into ShortText and Description.
   // In that case we delete one of them:
   if (shortText && description && strcmp(shortText, description) == 0) {
      if (strlen(shortText) > MAX_USEFUL_EPISODE_LENGTH) {
         free(shortText);
         shortText = NULL;
         }
      else {
         free(description);
         description = NULL;
         }
      EpgBugFixStat(7, ChannelID());
      }

Maybe you have disabled the "EPG bugfix level" setup option?

Klaus


[Index of Archives]     [Linux Media]     [Asterisk]     [DCCP]     [Netdev]     [Xorg]     [Util Linux NG]     [Xfree86]     [Big List of Linux Books]     [Fedora Users]     [Fedora Women]     [ALSA Devel]     [Linux USB]

  Powered by Linux