mirror of
https://github.com/stashapp/stash.git
synced 2025-12-23 00:33:40 +01:00
Encode query string (#2552)
This commit is contained in:
parent
21a26fadd8
commit
1a6f5619ae
1 changed files with 1 additions and 1 deletions
|
|
@ -166,7 +166,7 @@ export class ListFilterModel {
|
|||
this.displayMode !== DEFAULT_PARAMS.displayMode
|
||||
? this.displayMode
|
||||
: undefined,
|
||||
q: this.searchTerm,
|
||||
q: this.searchTerm ? encodeURIComponent(this.searchTerm) : undefined,
|
||||
p:
|
||||
this.currentPage !== DEFAULT_PARAMS.currentPage
|
||||
? this.currentPage
|
||||
|
|
|
|||
Loading…
Reference in a new issue