Merge branch 'fix/console-errors-with-reply-filter' into 'develop'

Fix console errors in status.js

See merge request pleroma/pleroma-fe!875
This commit is contained in:
HJ 2019-07-07 23:27:46 +00:00
commit 6b4fe1c2d9
1 changed files with 3 additions and 2 deletions

View File

@ -173,12 +173,13 @@ const Status = {
if (this.status.type === 'retweet') {
return false
}
var checkFollowing = this.$store.state.config.replyVisibility === 'following'
const checkFollowing = this.$store.state.config.replyVisibility === 'following'
for (var i = 0; i < this.status.attentions.length; ++i) {
if (this.status.user.id === this.status.attentions[i].id) {
continue
}
if (checkFollowing && this.$store.getters.findUser(this.status.attentions[i].id).following) {
const taggedUser = this.$store.getters.findUser(this.status.attentions[i].id)
if (checkFollowing && taggedUser && taggedUser.following) {
return false
}
if (this.status.attentions[i].id === this.$store.state.users.currentUser.id) {