mirror of
https://github.com/tubearchivist/browser-extension.git
synced 2024-12-25 11:20:13 +00:00
Fix handling of cookies for absolute domains
This commit is contained in:
parent
f5152a4717
commit
0c6c4f2cf4
@ -195,9 +195,12 @@ async function cookieStr(cookieLines) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function buildCookieLine(cookie) {
|
function buildCookieLine(cookie) {
|
||||||
|
// 2nd argument controls subdomains, and must match leading dot in domain
|
||||||
|
let includeSubdomains = cookie.domain.startsWith('.') ? 'TRUE' : 'FALSE';
|
||||||
|
|
||||||
return [
|
return [
|
||||||
cookie.domain,
|
cookie.domain,
|
||||||
'TRUE',
|
includeSubdomains,
|
||||||
cookie.path,
|
cookie.path,
|
||||||
cookie.httpOnly.toString().toUpperCase(),
|
cookie.httpOnly.toString().toUpperCase(),
|
||||||
Math.trunc(cookie.expirationDate) || 0,
|
Math.trunc(cookie.expirationDate) || 0,
|
||||||
|
Loading…
Reference in New Issue
Block a user