We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d8316c commit 2a0e422Copy full SHA for 2a0e422
src/cookie-manager/cookie_manager_views.js
@@ -437,6 +437,9 @@ cls.CookieManager.CookieManagerViewBase = function()
437
438
expires = new Date(expires || 0).getTime();
439
440
+ // "expires" represents a local time value. Add timezone offset.
441
+ expires += new Date().getTimezoneOffset() * 60 * 1000;
442
+
443
var object_id = edit_tr.getAttribute("data-object-id");
444
var old_cookie;
445
if (object_id)
0 commit comments