mirror of
https://github.com/Equicord/Equicord.git
synced 2025-01-18 13:23:28 -05:00
Fix?
This commit is contained in:
parent
79d7b59a36
commit
51922be415
1 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue