Skip to content

Commit

Permalink
[Fixes #378] Wrong encoding of result from search autocomplete (#379)
Browse files Browse the repository at this point in the history
  • Loading branch information
marthamareal authored Jul 28, 2021
1 parent fae9c9e commit e3ee8b2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
q = params[i].replace('q=', '');
}
}
return q;
return decodeURIComponent(q);
}

function onSearch(q) {
Expand Down

0 comments on commit e3ee8b2

Please sign in to comment.