chore: ignore ipv6 check when get interface addrs failed

This commit is contained in:
wwqgtxx
2025-10-28 18:22:03 +08:00
parent cfdaebe952
commit 6bffbdd9d3

View File

@@ -155,6 +155,10 @@ func verifyIP6() bool {
}
}
}
} else {
// eg: Calling net.InterfaceAddrs() fails on Android SDK 30
// https://github.com/golang/go/issues/40569
return true // just ignore
}
return false
}