mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-02 21:12:02 +08: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();
|
||||
|
||||
// conditionToSieveScript
|
||||
|
|
Loading…
Reference in a new issue