diff options
Diffstat (limited to 'src/components/extra_buttons/extra_buttons.js')
| -rw-r--r-- | src/components/extra_buttons/extra_buttons.js | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/components/extra_buttons/extra_buttons.js b/src/components/extra_buttons/extra_buttons.js index 71f5946d..55a4caad 100644 --- a/src/components/extra_buttons/extra_buttons.js +++ b/src/components/extra_buttons/extra_buttons.js @@ -24,19 +24,15 @@ const ExtraButtons = { }, pinStatus () { this.refreshPopper() - this.$store.state.api.backendInteractor.pinOwnStatus(this.status.id).then((status) => { + this.$store.dispatch('pinStatus', this.status.id).then((status) => { if (status.error) { this.$emit('onError', status.error) - } else { - this.$store.dispatch('updatePinned', status) } }) }, unpinStatus () { this.refreshPopper() - this.$store.state.api.backendInteractor.unpinOwnStatus(this.status.id).then((status) => { - this.$store.dispatch('updatePinned', status) - }) + this.$store.dispatch('unpinStatus', this.status.id) }, refreshPopper () { this.showPopper = false |
