mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44: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 !== DEFAULT_PARAMS.displayMode
|
||||||
? this.displayMode
|
? this.displayMode
|
||||||
: undefined,
|
: undefined,
|
||||||
q: this.searchTerm,
|
q: this.searchTerm ? encodeURIComponent(this.searchTerm) : undefined,
|
||||||
p:
|
p:
|
||||||
this.currentPage !== DEFAULT_PARAMS.currentPage
|
this.currentPage !== DEFAULT_PARAMS.currentPage
|
||||||
? this.currentPage
|
? this.currentPage
|
||||||
|
|||||||
Reference in New Issue
Block a user