diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-06-11 14:06:23 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-06-11 14:06:23 +0900 |
| commit | e0f847e539455187b5f72bb68e89e6b97d7377f3 (patch) | |
| tree | 871ce3fc87d96e65982c510ee5817b0ba3d30447 /src | |
| parent | Clean up (diff) | |
| download | sharkey-e0f847e539455187b5f72bb68e89e6b97d7377f3.tar.gz sharkey-e0f847e539455187b5f72bb68e89e6b97d7377f3.tar.bz2 sharkey-e0f847e539455187b5f72bb68e89e6b97d7377f3.zip | |
:v:
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/common/views/widgets/hashtags.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/views/widgets/hashtags.vue b/src/client/app/common/views/widgets/hashtags.vue index 74b5b76479..809f87f6f2 100644 --- a/src/client/app/common/views/widgets/hashtags.vue +++ b/src/client/app/common/views/widgets/hashtags.vue @@ -41,7 +41,7 @@ export default define({ }, mounted() { this.fetch(); - this.clock = setInterval(this.fetch, 1000 * 60 * 10); + this.clock = setInterval(this.fetch, 1000 * 60); }, beforeDestroy() { clearInterval(this.clock); |