I have a simple app made with Electron that opens an HTTPS URL.
While loading, I get this error:
[21460:0611/195445.035:ERROR:cert_issuer_source_aia.cc(34)] Error parsing cert retrieved from AIA (as DER):
ERROR: Couldn't read tbsCertificate as SEQUENCE
ERROR: Failed parsing Certificate
The page is opened without error, should I ignore it?
I’m using electron-forge 6.2.1, the app is very simple:
let win = new BrowserWindow({
width: 600,
height: 400,
webSecurity: true,
autoHideMenuBar: true,
show: false,
});
win.loadURL(url);