fix: 更新依赖版本,修复GooglePlayStore检测

This commit is contained in:
spiritlhl
2025-07-28 02:14:33 +00:00
parent a68d33739c
commit 6937e69a0a
8 changed files with 75 additions and 97 deletions
+1 -1
View File
@@ -12,5 +12,5 @@ func Basic(language string) {
ipInfo, _, _ := network.NetworkCheck("both", false, language)
systemInfo := system.CheckSystemInfo(language)
basicInfo := strings.ReplaceAll(systemInfo+ipInfo, "\n\n", "\n")
fmt.Printf(basicInfo)
fmt.Print(basicInfo)
}
+1 -1
View File
@@ -7,5 +7,5 @@ import (
func ComMediaTest(language string) {
res := commediatests.MediaTests(language)
fmt.Printf(res)
fmt.Print(res)
}
+2 -2
View File
@@ -15,8 +15,8 @@ func TestIpv4SecurityCheck(t *testing.T) {
// 全项测试
ipInfo, securityInfo, _ := NetworkCheck("both", true, "zh")
fmt.Println("--------------------------------------------------")
fmt.Printf(ipInfo)
fmt.Print(ipInfo)
fmt.Println("--------------------------------------------------")
fmt.Printf(securityInfo)
fmt.Print(securityInfo)
fmt.Println("--------------------------------------------------")
}