I found the issue with SDT not parsing the Weather Under Ground data
correctly.

To fix your copy look for the following line in the gotWunderground sub
and change "-3" to "-2".  

Before:

Code:
--------------------
    
  if($ary[scalar(@ary)-3] =~ 
/^20\d\d-.*?,(.*?),(.*?),(.*?),(.*?),.*?,(.*?),.*?,(.*?),.*?,(.*?),(.*?),.*,/) {
  
--------------------

After:

Code:
--------------------
    
  if($ary[scalar(@ary)-2] =~ 
/^20\d\d-.*?,(.*?),(.*?),(.*?),(.*?),.*?,(.*?),.*?,(.*?),.*?,(.*?),(.*?),.*,/) {
  
--------------------


In version 5.9.8 it's located at line# 3636.

Hope this helps out.
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