Replace single quotes in page query params

This commit is contained in:
JonnyWong16 2020-02-20 11:09:33 -08:00
parent 5480d09a0b
commit a5624e86e4

View file

@ -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) {