mirror of
https://github.com/stashapp/stash.git
synced 2025-12-15 21:03:22 +01:00
Don't trim query string from decoded URL params (#6211)
This commit is contained in:
parent
db79cf9bb1
commit
f04be76224
1 changed files with 1 additions and 1 deletions
|
|
@ -183,7 +183,7 @@ export class ListFilterModel {
|
|||
ret.disp = Number.parseInt(params.disp, 10);
|
||||
}
|
||||
if (params.q) {
|
||||
ret.q = params.q.trim();
|
||||
ret.q = params.q;
|
||||
}
|
||||
if (params.p) {
|
||||
ret.p = Number.parseInt(params.p, 10);
|
||||
|
|
|
|||
Loading…
Reference in a new issue