Skip to content

Commit

Permalink
Status.update now fetches up to 100 statuses.
Browse files Browse the repository at this point in the history
  • Loading branch information
nelstrom committed Jul 25, 2009
1 parent f69c2a4 commit e1a25bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/status.rb
Expand Up @@ -44,7 +44,7 @@ def self.update
count = 0
begin
SiteConfig.search_keywords.each do |keyword|
Twitter::Search.new(keyword).each do |s|
Twitter::Search.new(keyword).per_page(100).each do |s|
unless self.first(:twitter_id => s.id)
self.create_from_twitter(s)
count += 1
Expand Down

0 comments on commit e1a25bf

Please sign in to comment.