GoCubs;636008 Wrote: 
> 
> Is anyone still having this issue without applying the fix mentioned in
> this thread?
> 

Like others, I just returned from a short vacation, and it is NOT
working... so the problem isn't self-correcting.

One caveat, folks:  In the past, we've found that Weather Channel added
the space for several days, and then several days later, "fixed" the
problem by REMOVING the space.  So, I would recommend a fix that looked
for ONE variant and then if not found looked for the other.

Thus, at line 3067, I would do:

# first try without a space...
@matches = $tree->look_down( "_tag", "td", "class", "twc-col-2" );

# if that didn't work, try WITH the space...
if (scalar @matches == 0) {
@matches = $tree->look_down( "_tag", "td", "class", "twc-col-2 "
);
}

This'll at least give you a little resilience should they change the
class ID back to the original.

Peter


-- 
PeterGV
------------------------------------------------------------------------
PeterGV's Profile: http://forums.slimdevices.com/member.php?userid=31531
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to