mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +03:00
Don't trim query string from decoded URL params (#6211)
This commit is contained in:
@@ -183,7 +183,7 @@ export class ListFilterModel {
|
|||||||
ret.disp = Number.parseInt(params.disp, 10);
|
ret.disp = Number.parseInt(params.disp, 10);
|
||||||
}
|
}
|
||||||
if (params.q) {
|
if (params.q) {
|
||||||
ret.q = params.q.trim();
|
ret.q = params.q;
|
||||||
}
|
}
|
||||||
if (params.p) {
|
if (params.p) {
|
||||||
ret.p = Number.parseInt(params.p, 10);
|
ret.p = Number.parseInt(params.p, 10);
|
||||||
|
|||||||
Reference in New Issue
Block a user