- initial primitive wtv-cookie service to satisfy newer builds and http(s) issues
 - update: wtv-home:/home: add wtv-visit: in case javascript URL accessor fails
 - update: replace bf0app and LC2 tellyscripts with box-specific PPP auth, rather than hard coded PPP auth (may disable CHAP support)
 - update: app.js: getServiceString overrides should only be temporary for that request
 - update: WTVClientCapabilities.js: catch exception when sent unknown configuration bits
This commit is contained in:
zefie
2021-08-02 14:59:10 -04:00
parent fcb94e3058
commit e8cfa60371
21 changed files with 980 additions and 37 deletions

View File

@@ -128,7 +128,11 @@ class WTVClientCapabilities {
var bitfield_result = (bitfield[k] == "1")
// set flags based on position of bit
add(capabilities_table[k][0], bitfield_result);
try {
add(capabilities_table[k][0], bitfield_result);
} catch (ex) {
console.error(" * Unknown configuration bit", k);
}
});
this.capabilities = capabilities;