From a91019b9199084d8108876886992716bcf2b8396 Mon Sep 17 00:00:00 2001 From: B Mathis Date: Thu, 12 Nov 2009 12:18:02 -0600 Subject: [PATCH] set twitter cookie to lastexpire in 30 minutes --- source/javascripts/twitter.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/javascripts/twitter.js b/source/javascripts/twitter.js index 4420c71..9c793b3 100644 --- a/source/javascripts/twitter.js +++ b/source/javascripts/twitter.js @@ -69,7 +69,7 @@ function prettyDate(time){ function getTwitterStatus(twitter_name){ var tweet_cookie = 'tweets_by_' + twitter_name + tweet_count; $(twitter_container).set('html', 'Fetching tweets...'); - if(!Cookie.read(tweet_cookie)) { + if(Cookie.read(tweet_cookie)) { var myTwitterGitter = new TwitterGitter(twitter_name,{ count: ((show_replies) ? tweet_count : 15 + tweet_count), onComplete: function(tweets,user) { @@ -80,7 +80,7 @@ function getTwitterStatus(twitter_name){ the_tweets.push(tweet.text + key + tweet.created_at + key + tweet.id + key + tweet.source); } }); - Cookie.write(tweet_cookie,the_tweets.join('^!^!^'), { duration: 1 }); + Cookie.write(tweet_cookie,the_tweets.join('^!^!^'), { duration: 0.02 }); showTweets(the_tweets); } }).retrieve();