Ensure client preview indicator doesn't crash when encountering incorrect node types
This commit is contained in:
parent
9b87d1a03e
commit
2f05450d79
|
@ -61,7 +61,7 @@
|
||||||
// Sanity limit of 100 active indicators
|
// Sanity limit of 100 active indicators
|
||||||
const children = Array.from(parents)
|
const children = Array.from(parents)
|
||||||
.map(parent => parent?.childNodes?.[0])
|
.map(parent => parent?.childNodes?.[0])
|
||||||
.filter(child => child != null)
|
.filter(node => node?.nodeType === 1)
|
||||||
.slice(0, 100)
|
.slice(0, 100)
|
||||||
|
|
||||||
// If there aren't any nodes then reset
|
// If there aren't any nodes then reset
|
||||||
|
|
Loading…
Reference in New Issue