[SimBot-commits] CVS: simbot/plugins rss.pl,1.71,1.72
Status: Abandoned
Brought to you by:
kstange
|
From: Kevin S. <ks...@us...> - 2006-01-19 23:54:24
|
Update of /cvsroot/simbot/simbot/plugins In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13201/plugins Modified Files: rss.pl Log Message: "whiskey tango foxtrot" Index: rss.pl =================================================================== RCS file: /cvsroot/simbot/simbot/plugins/rss.pl,v retrieving revision 1.71 retrieving revision 1.72 diff -u -d -p -r1.71 -r1.72 --- rss.pl 19 Jan 2006 13:50:06 -0000 1.71 +++ rss.pl 19 Jan 2006 23:53:59 -0000 1.72 @@ -401,7 +401,7 @@ sub latest_headlines { # yay, we know about the feed # is the cache up to date? - if(!defined $last_update || $last_update > time - EXPIRE) { + if(!defined $last_update || $last_update < time - EXPIRE) { # cache is stale or missing &debug(4, "rss: $feed is old or missing.\n"); my $request = HTTP::Request->new(GET => $url); |