From b57e4cf49f446a68a9d451821cc2cdf92d7a2fc6 Mon Sep 17 00:00:00 2001 From: nite07 Date: Wed, 5 Mar 2025 19:24:48 +1100 Subject: [PATCH] fix ua form --- api/static/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/static/index.js b/api/static/index.js index 575e48e..fc64113 100644 --- a/api/static/index.js +++ b/api/static/index.js @@ -69,7 +69,7 @@ function generateURI() { // 获取订阅user-agent标识 const userAgent = document.getElementById("user-agent").value; - queryParams.push(`userAgent=${userAgent}`) + queryParams.push(`userAgent=${encodeURIComponent(userAgent)}`); // 获取复选框的值 const refresh = document.getElementById("refresh").checked;