diff options
| author | shpuld <shp@cock.li> | 2019-08-10 15:53:46 +0300 |
|---|---|---|
| committer | shpuld <shp@cock.li> | 2019-08-10 15:53:46 +0300 |
| commit | f1bdbeabf0294bd7e2ef71f9d61118d3dca442e1 (patch) | |
| tree | 13d2dca9ac6b8130ae398242f7bb8aae3b40fd9b /src/components/extra_buttons/extra_buttons.js | |
| parent | 7e2d48a26e9b6e4d06e7d4efc7ceb579e30227b8 (diff) | |
fix js error on mute
Diffstat (limited to 'src/components/extra_buttons/extra_buttons.js')
| -rw-r--r-- | src/components/extra_buttons/extra_buttons.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/components/extra_buttons/extra_buttons.js b/src/components/extra_buttons/extra_buttons.js index 8d123293..2d05ad39 100644 --- a/src/components/extra_buttons/extra_buttons.js +++ b/src/components/extra_buttons/extra_buttons.js @@ -18,13 +18,11 @@ const ExtraButtons = { .catch(err => this.$emit('onError', err.error.error)) }, muteConversation () { - this.refreshPopper() this.$store.dispatch('muteConversation', this.status.id) .then(() => this.$emit('onSuccess')) .catch(err => this.$emit('onError', err.error.error)) }, unmuteConversation () { - this.refreshPopper() this.$store.dispatch('unmuteConversation', this.status.id) .then(() => this.$emit('onSuccess')) .catch(err => this.$emit('onError', err.error.error)) |
