[Glitch] Fix trending hashtags being fetched every 36 seconds instead of every hour (#11631)

Port db5c84ce4b to glitch-soc

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
lolsob-rspec
ThibG 2019-08-21 00:18:07 +02:00
parent fe085973a3
commit 66925dce64
1 changed files with 1 additions and 1 deletions

View File

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