This commit is contained in:
thororen1234 2024-08-30 22:07:51 -04:00
parent 79d7b59a36
commit 51922be415

View file

@ -289,7 +289,10 @@ page.on("console", async e => {
}
});
page.on("error", e => console.error("[Error]", e.message));
page.on("error", e => {
if (e.message.includes("the network is offline")) return;
console.error("[Error]", e.message);
});
page.on("pageerror", e => {
if (e.message.includes("Sentry successfully disabled")) return;