Skip to content

Commit

Permalink
Fix missing cookie comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
Radiokot committed Nov 25, 2024
1 parent 5b8320a commit e857bef
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit e857bef

Please sign in to comment.