mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-08 00:47:04 +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)) + ' ';
|
subject = ':subject ' + quote(StripSpaces(paramValue)) + ' ';
|
||||||
}
|
}
|
||||||
|
|
||||||
paramValue = (filter.actionValueThird() || '').trim();
|
paramValue = ('' + (filter.actionValueThird() || '')).trim();
|
||||||
if (paramValue.length) {
|
if (paramValue.length) {
|
||||||
days = Math.max(1, parseInt(paramValue, 10));
|
days = Math.max(1, parseInt(paramValue, 10));
|
||||||
}
|
}
|
||||||
|
|
||||||
paramValue = (filter.actionValueFourth() || '').trim()
|
paramValue = ('' + (filter.actionValueFourth() || '')).trim()
|
||||||
if (paramValue.length) {
|
if (paramValue.length) {
|
||||||
paramValue = paramValue.split(',').map(email =>
|
paramValue = paramValue.split(',').map(email =>
|
||||||
email.trim().length ? quote(email) : ''
|
email.trim().length ? quote(email) : ''
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue