fix: update default latency test URL to use HTTPS

This commit is contained in:
Tunglies
2025-06-02 12:41:41 +08:00
parent a36d2633c9
commit d5c0b09a2f
6 changed files with 7 additions and 6 deletions

View File

@@ -23,7 +23,7 @@ class DelayManager {
`[DelayManager] 获取测试URL组: ${group}, URL: ${url || "未设置"}`,
);
// 如果未设置URL返回默认URL
return url || "http://cp.cloudflare.com/generate_204";
return url || "https://www.gstatic.com/generate_204";
}
setListener(name: string, group: string, listener: (time: number) => void) {