mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 20:19:22 +03:00
Encode KEYWORD search for #419
This commit is contained in:
parent
ba19d4e6b1
commit
df2de7ad66
2 changed files with 10 additions and 4 deletions
|
|
@ -107,7 +107,7 @@ export class AdvancedSearchPopupView extends AbstractViewPopup {
|
|||
append('since', d.toISOString().split('T')[0]);
|
||||
}
|
||||
|
||||
let result = new URLSearchParams(data).toString().replace('%24','$');
|
||||
let result = decodeURIComponent(new URLSearchParams(data).toString());
|
||||
|
||||
if (self.hasAttachment()) {
|
||||
result += '&attachment';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue