diff --git a/app/src/main/java/com/concordium/wallet/data/backend/InMemoryCookieJar.kt b/app/src/main/java/com/concordium/wallet/data/backend/InMemoryCookieJar.kt index 77d9338d..c65e90fc 100644 --- a/app/src/main/java/com/concordium/wallet/data/backend/InMemoryCookieJar.kt +++ b/app/src/main/java/com/concordium/wallet/data/backend/InMemoryCookieJar.kt @@ -34,6 +34,7 @@ class InMemoryCookieJar : CookieJar { return this.cookie.name == other.cookie.name && this.cookie.domain == other.cookie.domain + && this.cookie.path == other.cookie.path && this.cookie.secure == other.cookie.secure && this.cookie.hostOnly == other.cookie.hostOnly }