fix drafts

This commit is contained in:
Henry Jameson 2026-07-23 19:58:14 +03:00
commit 7b4fef365e
3 changed files with 16 additions and 14 deletions

View file

@ -76,7 +76,9 @@ const ChatMessage = {
return !!this.message.user
},
author() {
const accountId = this.isStatus ? this.message.user.id : this.message.account_id
const accountId = this.isStatus
? this.message.user.id
: this.message.account_id
return this.$store.getters.findUser(accountId)
},