• Currently in 2v12.58 it can't be catched.

    It might be handled as a promise rejection - which is different to something that you catch with a try...catch?

  • Specifically this code doesn't catch it. Do I need to do something different?

    setInterval(() => {
      Bangle.getPressure().then(d => {
        console.log(d.temperature);
      }).catch(()=> {
        // THIS IS NEVER REACHED
        console.log("ERROR");
      });
    }, 10 * 1000);
    
About

Avatar for malaire @malaire started