add option to keep CWs with "RE:" prefix
This commit is contained in:
parent
dae544b353
commit
3bf1cb1545
6 changed files with 51 additions and 22 deletions
|
|
@ -373,7 +373,9 @@ if (props.specified) {
|
|||
// keep cw when reply
|
||||
if (prefer.s.keepCw && props.reply && props.reply.cw) {
|
||||
useCw.value = true;
|
||||
cw.value = props.reply.cw;
|
||||
cw.value = prefer.s.keepCw === 'prepend-re'
|
||||
? `RE: ${props.reply.cw}`
|
||||
: props.reply.cw;
|
||||
}
|
||||
|
||||
// apply default CW
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue