Skip to content

Commit

Permalink
Fix trending hashtags being fetched every 36 seconds instead of every…
Browse files Browse the repository at this point in the history
… hour (mastodon#11631)
  • Loading branch information
ClearlyClaire authored and hiyuki2578 committed Oct 2, 2019
1 parent 0f2a65a commit 473aab3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default class Trends extends ImmutablePureComponent {

componentDidMount () {
this.props.fetchTrends();
this.refreshInterval = setInterval(() => this.props.fetchTrends(), 36000);
this.refreshInterval = setInterval(() => this.props.fetchTrends(), 3600000);
}

componentWillUnmount () {
Expand Down

0 comments on commit 473aab3

Please sign in to comment.