Browse Source

Fix delete last scheduler

i18n
Xose Pérez 6 years ago
parent
commit
006c8f2380
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      code/html/custom.js

+ 5
- 1
code/html/custom.js View File

@ -147,7 +147,11 @@ function getData(form) {
}); });
// Post process // Post process
if ("schSwitch" in data) data["schSwitch"].push(0xFF);
if ("schSwitch" in data) {
data["schSwitch"].push(0xFF);
} else {
data["schSwitch"] = [0xFF];
}
return data; return data;


Loading…
Cancel
Save