remove cookie set check
This commit is contained in:
parent
4d4034091a
commit
8f1881e12c
12
js/tt-rss.js
12
js/tt-rss.js
|
@ -71,9 +71,6 @@ require(["dojo/_base/kernel",
|
||||||
|
|
||||||
parser.parse();
|
parser.parse();
|
||||||
|
|
||||||
if (!this.genericSanityCheck())
|
|
||||||
return;
|
|
||||||
|
|
||||||
this.setLoadingProgress(30);
|
this.setLoadingProgress(30);
|
||||||
this.initHotkeyActions();
|
this.initHotkeyActions();
|
||||||
|
|
||||||
|
@ -159,15 +156,6 @@ require(["dojo/_base/kernel",
|
||||||
|
|
||||||
console.log("second stage ok");
|
console.log("second stage ok");
|
||||||
},
|
},
|
||||||
genericSanityCheck: function() {
|
|
||||||
Cookie.set("ttrss_test", "TEST");
|
|
||||||
|
|
||||||
if (Cookie.get("ttrss_test") != "TEST") {
|
|
||||||
return fatalError(2);
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
},
|
|
||||||
updateTitle: function() {
|
updateTitle: function() {
|
||||||
let tmp = "Tiny Tiny RSS";
|
let tmp = "Tiny Tiny RSS";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue