mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 01:02:08 +01:00
Fix handling of path
in set-cookie
scriptlet
As per feedback from filter list volunteers.
This commit is contained in:
parent
f6ee3f9878
commit
7901a00bd7
1 changed files with 5 additions and 9 deletions
|
@ -739,7 +739,11 @@ function setCookieHelper(
|
|||
if ( expires !== '' ) {
|
||||
cookieParts.push('; expires=', expires);
|
||||
}
|
||||
if ( path !== '' ) {
|
||||
|
||||
if ( path === '' ) { path = '/'; }
|
||||
else if ( path === 'none' ) { path = ''; }
|
||||
if ( path !== '' && path !== '/' ) { return; }
|
||||
if ( path === '/' ) {
|
||||
cookieParts.push('; path=/');
|
||||
}
|
||||
document.cookie = cookieParts.join('');
|
||||
|
@ -2752,10 +2756,6 @@ function setCookie(
|
|||
}
|
||||
value = encodeURIComponent(value);
|
||||
|
||||
const validPaths = [ '', '/', 'none' ];
|
||||
if ( validPaths.includes(path) === false ) { return; }
|
||||
if ( path === 'none' ) { path = ''; }
|
||||
|
||||
setCookieHelper(
|
||||
name,
|
||||
value,
|
||||
|
@ -2894,10 +2894,6 @@ function trustedSetCookie(
|
|||
expires = time.toUTCString();
|
||||
}
|
||||
|
||||
const validPaths = [ '', '/', 'none' ];
|
||||
if ( validPaths.includes(path) === false ) { return; }
|
||||
if ( path === 'none' ) { path = ''; }
|
||||
|
||||
setCookieHelper(
|
||||
name,
|
||||
value,
|
||||
|
|
Loading…
Reference in a new issue