You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
formatMemoryFlushVisibleError and truncateMemoryFlushErrorMessage use
.slice(0, N) to truncate error text. When the truncation boundary falls
inside a UTF-16 surrogate pair, the resulting text contains a dangling
surrogate that can corrupt session state diagnostics.
Replace .slice(0, N) with truncateUtf16Safe(text, N).
0 commit comments