fix: DisableKeepAlive default value of android (#1690)

This commit is contained in:
ForestL 2024-12-02 22:49:16 +08:00 committed by GitHub
parent 9de9f1ef51
commit 5a24efdabf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -35,7 +35,7 @@ func KeepAliveInterval() time.Duration {
func SetDisableKeepAlive(disable bool) {
if runtime.GOOS == "android" {
setDisableKeepAlive(false)
setDisableKeepAlive(true)
} else {
setDisableKeepAlive(disable)
}