aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/components/status/status.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js
index 284c657c..7911d40d 100644
--- a/src/components/status/status.js
+++ b/src/components/status/status.js
@@ -421,11 +421,13 @@ const Status = {
}
},
'status.repeat_num': function (num) {
+ // refetch repeats when repeat_num is changed in any way
if (this.isFocused && this.statusFromGlobalRepository.rebloggedBy && this.statusFromGlobalRepository.rebloggedBy.length !== num) {
this.$store.dispatch('fetchRepeats', this.status.id)
}
},
'status.fave_num': function (num) {
+ // refetch favs when fave_num is changed in any way
if (this.isFocused && this.statusFromGlobalRepository.favoritedBy && this.statusFromGlobalRepository.favoritedBy.length !== num) {
this.$store.dispatch('fetchFavs', this.status.id)
}