Preserve subject in replies.
This commit is contained in:
parent
a7c6007d54
commit
54ac0dfefd
3 changed files with 10 additions and 2 deletions
|
@ -173,6 +173,12 @@ const Status = {
|
|||
}
|
||||
return true
|
||||
},
|
||||
replySubject () {
|
||||
if (this.status.summary && !this.status.summary.match(/^re[: ]/i)) {
|
||||
return 're: '.concat(this.status.summary)
|
||||
}
|
||||
return this.status.summary
|
||||
},
|
||||
attachmentSize () {
|
||||
if ((this.$store.state.config.hideAttachments && !this.inConversation) ||
|
||||
(this.$store.state.config.hideAttachmentsInConv && this.inConversation)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue