mirror of https://github.com/iv-org/invidious.git
Update cookie declaration for preserve SameSite directive
This commit is contained in:
parent
1e3f4ed398
commit
8e4959a621
|
@ -209,7 +209,7 @@ function updateCookie(newVolume, newSpeed) {
|
||||||
date.setTime(date.getTime() + 63115200);
|
date.setTime(date.getTime() + 63115200);
|
||||||
document.cookie = 'PREFS=' +
|
document.cookie = 'PREFS=' +
|
||||||
encodeURIComponent(JSON.stringify({ 'volume': volumeValue, 'speed': speedValue })) +
|
encodeURIComponent(JSON.stringify({ 'volume': volumeValue, 'speed': speedValue })) +
|
||||||
'; expires=' + date.toGMTString() + '; SameSite=Strict; path=/';
|
'; SameSite=Strict; path=/; expires=' + date.toGMTString() + ';';
|
||||||
}
|
}
|
||||||
video_data.params.volume = volumeValue;
|
video_data.params.volume = volumeValue;
|
||||||
video_data.params.speed = speedValue;
|
video_data.params.speed = speedValue;
|
||||||
|
|
Loading…
Reference in New Issue