Encode KEYWORD search for #419

This commit is contained in:
the-djmaze 2022-10-06 09:57:56 +02:00
parent ba19d4e6b1
commit df2de7ad66
2 changed files with 10 additions and 4 deletions

View file

@ -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';