mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-31 21:19:21 +03:00
Resolve #407
This commit is contained in:
parent
199aea0636
commit
7c8039d91d
1 changed files with 2 additions and 2 deletions
|
|
@ -152,12 +152,12 @@ function filtersToSieveScript(filters)
|
|||
subject = ':subject ' + quote(StripSpaces(paramValue)) + ' ';
|
||||
}
|
||||
|
||||
paramValue = (filter.actionValueThird() || '').trim();
|
||||
paramValue = ('' + (filter.actionValueThird() || '')).trim();
|
||||
if (paramValue.length) {
|
||||
days = Math.max(1, parseInt(paramValue, 10));
|
||||
}
|
||||
|
||||
paramValue = (filter.actionValueFourth() || '').trim()
|
||||
paramValue = ('' + (filter.actionValueFourth() || '')).trim()
|
||||
if (paramValue.length) {
|
||||
paramValue = paramValue.split(',').map(email =>
|
||||
email.trim().length ? quote(email) : ''
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue