mirror of
https://github.com/clash-verge-rev/clash-verge-rev.git
synced 2026-04-13 05:20:28 +08:00
chore: replace node test with cp.cloudflare.com
This commit is contained in:
parent
7f045943e2
commit
321017413d
@ -615,7 +615,7 @@ export const GroupsEditorViewer = (props: Props) => {
|
||||
/>
|
||||
<TextField
|
||||
autoComplete="new-password"
|
||||
placeholder="http://1.0.0.1"
|
||||
placeholder="http://cp.cloudflare.com"
|
||||
size="small"
|
||||
sx={{ width: "calc(100% - 150px)" }}
|
||||
{...field}
|
||||
|
||||
@ -66,7 +66,7 @@ export const ProxyHead = ({
|
||||
|
||||
const { verge } = useVerge();
|
||||
const defaultLatencyUrl =
|
||||
verge?.default_latency_test?.trim() || "http://1.0.0.1";
|
||||
verge?.default_latency_test?.trim() || "http://cp.cloudflare.com";
|
||||
|
||||
useEffect(() => {
|
||||
delayManager.setUrl(groupName, testUrl?.trim() || url || defaultLatencyUrl);
|
||||
|
||||
@ -383,7 +383,7 @@ export const MiscViewer = forwardRef<DialogRef>((props, ref) => {
|
||||
spellCheck="false"
|
||||
sx={{ width: 250, marginLeft: "auto" }}
|
||||
value={values.defaultLatencyTest}
|
||||
placeholder="http://1.0.0.1"
|
||||
placeholder="http://cp.cloudflare.com"
|
||||
onChange={(e) =>
|
||||
setValues((v) => ({ ...v, defaultLatencyTest: e.target.value }))
|
||||
}
|
||||
|
||||
@ -340,7 +340,7 @@ export async function cmdGetProxyDelay(
|
||||
url?: string,
|
||||
) {
|
||||
// 确保URL不为空
|
||||
const testUrl = url || "http://1.0.0.1";
|
||||
const testUrl = url || "http://cp.cloudflare.com";
|
||||
|
||||
try {
|
||||
// 不再在前端编码代理名称,由后端统一处理编码
|
||||
|
||||
@ -120,7 +120,7 @@ class DelayManager {
|
||||
`[DelayManager] 获取测试URL,组: ${group}, URL: ${url || "未设置"}`,
|
||||
);
|
||||
// 如果未设置URL,返回默认URL
|
||||
return url || "http://1.0.0.1";
|
||||
return url || "http://cp.cloudflare.com";
|
||||
}
|
||||
|
||||
setListener(
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user