mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-07 00:17:03 +03:00
Resolve #494
This commit is contained in:
parent
a18cc9a486
commit
edb7b38e0c
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ function filtersToSieveScript(filters)
|
||||||
''
|
''
|
||||||
];
|
];
|
||||||
|
|
||||||
const quote = string => '"' + string.trim().replace(/(\\|")/, '\\\\$1') + '"';
|
const quote = string => '"' + string.trim().replace(/(\\|")/g, '\\$1') + '"';
|
||||||
const StripSpaces = string => string.replace(/\s+/, ' ').trim();
|
const StripSpaces = string => string.replace(/\s+/, ' ').trim();
|
||||||
|
|
||||||
// conditionToSieveScript
|
// conditionToSieveScript
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue