Skip to content

Commit

Permalink
Merge branch 'master' into v2.1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
Medicean committed Sep 10, 2020
2 parents ba3e29a + 0d5b8b7 commit 5dfe74d
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions source/modules/viewsite/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,16 +145,14 @@ class ViewSite {
data.push({
id: i + 1,
data: [
c.name, c.value, c.domain, c.path, c.session ?
'Session' :
new Date(c.expirationDate).toUTCString(),
antSword.noxss(c.name),
antSword.noxss(c.value),
antSword.noxss(c.domain),
antSword.noxss(c.path),
c.session ? 'Session' : new Date(c.expirationDate).toUTCString(),
c.name.length + c.value.length,
c.httpOnly ?
'httpOnly' :
'',
c.secure ?
'Secure' :
''
c.httpOnly ? 'httpOnly' : '',
c.secure ? 'Secure' : ''
]
});
});
Expand Down

0 comments on commit 5dfe74d

Please sign in to comment.