web: Use uri instead of url.

Following the issue #23380 and PR #25038, this commit changes all
occurences of `uri` into `url` in all comments, local variables,
handlebars templates (.hbs) function names and their callers in
all `.js` and `.ts` files.
This commit is contained in:
AcKindle3
2023-04-08 23:22:23 -04:00
committed by Tim Abbott
parent 5a89d3b4d2
commit 02364dd69f
24 changed files with 46 additions and 46 deletions

View File

@@ -285,7 +285,7 @@ export class Filter {
if (["group-pm-with", "pm-with", "sender", "from"].includes(operator) === false) {
encoded = encoded.replace(/\+/g, " ");
}
return util.robust_uri_decode(encoded).trim();
return util.robust_url_decode(encoded).trim();
}
// Parse a string into a list of operators (see below).