fix(ts,build) fix TS error in web build

This commit is contained in:
Saúl Ibarra Corretgé 2022-09-26 16:13:22 +02:00 committed by Дамян Минков
parent 9c6119606f
commit eee096e0c0
1 changed files with 2 additions and 2 deletions

View File

@ -93,8 +93,8 @@ function _setErrorHandlers() {
if (JitsiMeetJS.getGlobalOnErrorHandler) {
const oldOnErrorHandler = window.onerror;
// eslint-disable-next-line max-params
window.onerror = (message, source, lineno, colno, error) => {
// @ts-ignore
window.onerror = (message, source, lineno, colno, error) => { // eslint-disable-line max-params
const errMsg = message || error?.message;
const stack = error?.stack;