mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-06 13:11:15 -07:00
Replace single quotes in page query params
This commit is contained in:
parent
5480d09a0b
commit
a5624e86e4
1 changed files with 1 additions and 1 deletions
|
@ -732,7 +732,7 @@ function page(endpoint, ...args) {
|
|||
params = endpoints[endpoint](...args);
|
||||
}
|
||||
|
||||
return endpoint + '?' + $.param(params);
|
||||
return endpoint + '?' + $.param(params).replace(/'/g, '%27');
|
||||
}
|
||||
|
||||
function pms_image_proxy(img, rating_key, width, height, opacity, background, blur, fallback, refresh, clip, img_format) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue