From b5212bb6cdc2d6b6ae8b791f5784bd72ba6dcf09 Mon Sep 17 00:00:00 2001 From: paweldomas Date: Fri, 22 Sep 2017 08:50:15 -0500 Subject: [PATCH] fix(WaitForOwnerDialog): undefined method and reg expr --- .../authentication/components/WaitForOwnerDialog.native.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/react/features/authentication/components/WaitForOwnerDialog.native.js b/react/features/authentication/components/WaitForOwnerDialog.native.js index a1fe6d9a1..2e16ae925 100644 --- a/react/features/authentication/components/WaitForOwnerDialog.native.js +++ b/react/features/authentication/components/WaitForOwnerDialog.native.js @@ -72,7 +72,7 @@ class WaitForOwnerDialog extends Component { titleKey = 'dialog.WaitingForHost'> { - this.renderHTML(t('dialog.WaitForHostMsg', { room })) + this._renderHTML(t('dialog.WaitForHostMsg', { room })) } @@ -110,7 +110,7 @@ class WaitForOwnerDialog extends Component { if (typeof html === 'string') { // TODO Limited styling may easily be provided by utilizing Text // with style. - return html.replace(/<\\?b>/gi, ''); + return html.replace(/<\/?b>/gi, ''); } return html;