diff --git a/public/js/app.js b/public/js/app.js index 54e118c..0b902cf 100755 --- a/public/js/app.js +++ b/public/js/app.js @@ -118738,7 +118738,7 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true }); }, upvote: function upvote(news) { this.loading = true; - this.api.vote(this.user.username, news.author, news.permlink, 1000, function (err, res) { + this.api.vote(this.user.username, news.author, news.permlink, 10000, function (err, res) { if (err) { this.$notify({ type: 'error', text: 'Couldn\'t Upvote now,
Try again later
', speed: 400 }); } diff --git a/resources/assets/js/components/v1/Home.vue b/resources/assets/js/components/v1/Home.vue index 12f6a84..e9f4f4a 100644 --- a/resources/assets/js/components/v1/Home.vue +++ b/resources/assets/js/components/v1/Home.vue @@ -434,7 +434,7 @@ upvote(news){ this.loading = true; - this.api.vote(this.user.username, news.author, news.permlink, 1000, function (err, res) { + this.api.vote(this.user.username, news.author, news.permlink, 10000, function (err, res) { if(err){ this.$notify({type: 'error', text: 'Couldn\'t Upvote now,
Try again later
', speed:400}); }