Skip to content

Commit

Permalink
Fix cookie setter (#448)
Browse files Browse the repository at this point in the history
  • Loading branch information
Renerick committed Jul 17, 2023
1 parent 3fddca9 commit 843fde8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/_hyperscript.js
Original file line number Diff line number Diff line change
Expand Up @@ -2433,7 +2433,7 @@
finalValue+=";secure=" + value.path;
}
}
document.cookie= prop + "=" + value;
document.cookie= prop + "=" + finalValue;
return true;
}
})
Expand Down

0 comments on commit 843fde8

Please sign in to comment.