Skip to content

Commit 378fda3

Browse files
committed
fix #8330 again -- whitelist more termjs errors.
1 parent c8addad commit 378fda3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/packages/static/src/webapp-error.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ function isWhitelisted({ error }): boolean {
143143
}
144144
if (
145145
error?.stack?.includes("xterm-addon-webgl") ||
146-
error.stack?.include("reading 'loadCell'")
146+
error?.stack?.includes("reading 'loadCell'") ||
147+
error?.stack?.includes("renderRows") // xtermjs in general...
147148
) {
148149
// ranodmly happens sometimes with webgl based terminal, but then it still works fine.
149150
return true;

0 commit comments

Comments
 (0)