Skip to content

Commit

Permalink
chore: add cookie secure
Browse files Browse the repository at this point in the history
  • Loading branch information
Edson Rodrigo committed Aug 9, 2022
1 parent 265cb36 commit 9598bfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helper/cookie.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export class Cookie {
'.ingresse.com' : document.location.hostname;

document.cookie =
this._concatName(cname) + '=' + cvalue + ';' +
this._concatName(cname) + '=' + cvalue + ';secure' +
expires + ';' +
'domain=' + domain + ';' +
'path=/'
Expand Down

0 comments on commit 9598bfe

Please sign in to comment.