mirror of
https://github.com/Suwayomi/Tachidesk.git
synced 2026-01-21 19:22:42 +01:00
Stop dumping cookies in the console (#1490)
This commit is contained in:
@@ -180,7 +180,6 @@ class PersistentCookieStore(
|
||||
val newValues =
|
||||
cookieMap[domain]
|
||||
.orEmpty()
|
||||
.onEach { println(it) }
|
||||
.asSequence()
|
||||
.filter { it.persistent && !it.hasExpired() }
|
||||
.map(Cookie::toString)
|
||||
|
||||
@@ -224,7 +224,6 @@ fun applicationSetup() {
|
||||
CefCookieManager.getGlobalManager().apply {
|
||||
val cookies = networkHelper.cookieStore.getStoredCookies()
|
||||
for (cookie in cookies) {
|
||||
logger.info { "Loading cookie ${cookie.name} for ${cookie.domain}" }
|
||||
try {
|
||||
if (!setCookie(
|
||||
"https://" + cookie.domain,
|
||||
|
||||
Reference in New Issue
Block a user