fixed twitter cookie saving

This commit is contained in:
B Mathis 2009-11-12 13:22:31 -06:00
parent a91019b919
commit a23a4734b4
1 changed files with 1 additions and 1 deletions

View File

@ -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) {