mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +03:00
Encode query string (#2552)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user