Skip to content

Commit

Permalink
Update lib/cookie.js
Browse files Browse the repository at this point in the history
Co-authored-by: Manuel Spigolon <behemoth89@gmail.com>
  • Loading branch information
nicob-29 and Eomm authored Dec 4, 2023
1 parent 2744c31 commit db9984a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cookie.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = class Cookie {
this.sameSite = cookie.sameSite || null
this.domain = cookie.domain || null
this.httpOnly = cookie.httpOnly !== undefined ? cookie.httpOnly : true
this.partitioned = cookie.partitioned ?? null
this.partitioned = cookie.partitioned ?? undefined
this._expires = null

if (originalMaxAge) {
Expand Down

0 comments on commit db9984a

Please sign in to comment.