Skip to content
This repository has been archived by the owner on May 16, 2019. It is now read-only.

Commit

Permalink
Merge pull request #238 from takayamaki/limit-regenerate-home-timelin…
Browse files Browse the repository at this point in the history
…e-by-1month

RegenerationWorkerの遡りを1ヶ月前までに制限
  • Loading branch information
takayamaki authored Mar 28, 2019
2 parents fbf5318 + c19a8c0 commit 13e0a4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/javascript/mastodon/locales/ja.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
"empty_column.favourites": "まだ誰もお気に入り登録していません。お気に入り登録されるとここに表示されます。",
"empty_column.follow_requests": "まだフォローリクエストを受けていません。フォローリクエストを受けるとここに表示されます。",
"empty_column.hashtag": "このハッシュタグはまだ使われていません。",
"empty_column.home": "まだ誰もフォローしていません。{public}を見に行くか、検索を使って他のユーザーを見つけましょう。",
"empty_column.home": "まだ誰もフォローしていないか、フォローしている人たちが過去1ヶ月のうちにトゥートしていません。{public}を見に行くか、検索を使って他のユーザーを見つけましょう。",
"empty_column.home.public_timeline": "連合タイムライン",
"empty_column.list": "このリストにはまだなにもありません。このリストのメンバーが新しいトゥートをするとここに表示されます。",
"empty_column.lists": "まだリストがありません。リストを作るとここに表示されます。",
Expand Down
2 changes: 1 addition & 1 deletion app/lib/feed_manager.rb
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def populate_feed(account)

loop do
statuses = Status.as_home_timeline(account)
.paginate_by_max_id(limit, max_id)
.paginate_by_max_id(limit, max_id).where('created_at > ?', 1.month.ago)

break if statuses.empty?

Expand Down

0 comments on commit 13e0a4f

Please sign in to comment.