This commit is contained in:
kunfei
2023-02-21 22:21:19 +08:00
parent dabd23d2fd
commit cfbea3ead2

View File

@@ -12,11 +12,9 @@ fun CookieManager.removeCookie(domain: String) {
)
urls.forEach { url ->
val cookieGlob = cm.getCookie(url)
cookieGlob.split(";").forEach {
cookieGlob.splitNotBlank(";").forEach {
val cookieName = it.substringBefore("=")
if (cookieName.isEmpty()) {
cm.setCookie(url, "$cookieName=; Expires=Wed, 31 Dec 2000 23:59:59 GMT")
}
cm.setCookie(url, "$cookieName=; Expires=Wed, 31 Dec 2000 23:59:59 GMT")
}
}
}