This commit is contained in:
WithoutPants 2022-10-12 06:10:15 +00:00
parent 6dcb1279a7
commit 396c1ffc6d

View file

@ -132,7 +132,7 @@ export class ListFilterModel {
} else {
searchTerm = params.q;
}
// See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent#decoding_query_parameters_from_a_url
searchTerm = searchTerm.replaceAll("+", " ");
params.q = decodeURIComponent(searchTerm);