79698: Escape browse by author data requests

This commit is contained in:
Bruno Roemers
2021-05-28 15:40:20 +02:00
parent f85a5e65ad
commit 4ad089ef54
2 changed files with 4 additions and 3 deletions

View File

@@ -130,7 +130,7 @@ export class BrowseService {
args.push(`startsWith=${options.startsWith}`);
}
if (isNotEmpty(filterValue)) {
args.push(`filterValue=${filterValue}`);
args.push(`filterValue=${encodeURIComponent(filterValue)}`);
}
if (isNotEmpty(args)) {
href = new URLCombiner(href, `?${args.join('&')}`).toString();