v0.9.10
- 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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user