To fix the college basketball scores from hanging SDT, make the
following changes in the gotCBB sub of plugin.pm.

From:

Code:
--------------------
    
  my @teams   = $game_div->look_down( "_tag", "a", "href", qr{clubhouse\?} );
  
--------------------

To:

Code:
--------------------
    
  my @teams   = $game_div->look_down( "_tag", "div", "id", qr{(h|a)TeamName} );
  
--------------------


AND

From:

Code:
--------------------
    
  my( $away_team )   = $teams[ 0 ]->content_list;
  my( $home_team )   = $teams[ 1 ]->content_list;
  
--------------------

To:

Code:
--------------------
    
  my( $away_team )   = $teams[ 0 ]->as_text;
  my( $home_team )   = $teams[ 1 ]->as_text;
  
--------------------


Hope this helps,
Don


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

_______________________________________________
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to