1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 04:05:57 +00:00

initial for JS strict mode

This commit is contained in:
Andrew Dolgov
2018-03-08 18:33:42 +03:00
parent c9a5e5aa28
commit 3009ecc44f
7 changed files with 11 additions and 10 deletions

View File

@@ -1117,7 +1117,7 @@ function backend_sanity_check_callback(transport) {
if (params) {
console.log('reading init-params...');
for (k in params) {
for (var k in params) {
console.log("IP: " + k + " => " + JSON.stringify(params[k]));
if (k == "label_base_index") _label_base_index = parseInt(params[k]);
}