not setting config to null to avoid loading issues

This commit is contained in:
Jack 2020-11-06 22:28:23 +00:00
parent 9698a68b1a
commit bc282a0297

View file

@ -91,7 +91,7 @@ async function saveConfigToCookie(noDbCheck = false) {
// showNotification('saving to cookie',1000);
let d = new Date();
d.setFullYear(d.getFullYear() + 1);
$.cookie("config", null);
// $.cookie("config", null);
$.cookie("config", JSON.stringify(config), {
expires: d,
path: "/",