The default DPDB URL used in options.js points to an expired domain:
|
// The URL to JSON of DPDB information. By default, uses the data |
|
// from https://github.com/WebVRRocks/webvr-polyfill-dpdb; if left |
|
// falsy, then no attempt is made. |
|
// Added in 1.0.1 |
|
DPDB_URL: 'https://dpdb.webvr.rocks/dpdb.json', |

Can the original domain be brought back online? Or should we switch to a different URL?
For now, I would recommend users change their DPDB_URL to null until this is fixed.
const display = new CardboardVRDisplay({
DPDB_URL: null
});
// or when using Cardboard VR Display through the WebXR polyfill:
new WebXRPolyfill({
cardboardConfig: {
DPDB_URL: null
}
});
The default DPDB URL used in
options.jspoints to an expired domain:cardboard-vr-display/src/options.js
Lines 51 to 55 in 935b678
Can the original domain be brought back online? Or should we switch to a different URL?
For now, I would recommend users change their
DPDB_URLtonulluntil this is fixed.