Fix daily average on accounts younger than a day

This commit is contained in:
wakarimasen 2017-04-11 11:47:19 +02:00
parent 7ee87c7618
commit 66b59f2752
1 changed files with 2 additions and 3 deletions

View File

@ -79,9 +79,8 @@
return this.$store.state.users.currentUser
},
dailyAvg () {
return Math.round(
this.user.statuses_count / ((new Date() - new Date(this.user.created_at)) / (60 * 60 * 24 * 1000))
)
const days = Math.ceil((new Date() - new Date(this.user.created_at)) / (60 * 60 * 24 * 1000))
return Math.round(this.user.statuses_count / days)
}
},
methods: {