aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/account.rb
diff options
context:
space:
mode:
authorre4k <re4k@re4k.info>2013-04-13 16:34:24 +0900
committerre4k <re4k@re4k.info>2013-04-13 16:34:24 +0900
commit84e85f40ebe77e7cfad22b7b53b2c77ad8043627 (patch)
tree27d2975600d9d14146034134fdc8f86af155317e /app/models/account.rb
parent62cb571ea3773039c8a61859fe0bbc1e74c94575 (diff)
downloadaclog-84e85f40ebe77e7cfad22b7b53b2c77ad8043627.tar.gz
fix typo, change charset to utf8mb4(MySQL), fix importing
Diffstat (limited to 'app/models/account.rb')
-rw-r--r--app/models/account.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/account.rb b/app/models/account.rb
index 37eb927..2eb9032 100644
--- a/app/models/account.rb
+++ b/app/models/account.rb
@@ -39,7 +39,7 @@ class Account < ActiveRecord::Base
end
# rts 回収・RTのステータスIDを取得する必要がある
- client.retweets(id).each do |status|
+ client.retweets(id, :count => 100).each do |status|
Retweet.from_tweet_object(status)
end
end