fix(rn) fix mobile build
Looks like a transform error of some sort, it chokes on the ??= shorthand syntax.
This commit is contained in:
parent
892751154c
commit
dffa71666c
|
@ -306,7 +306,7 @@ function _translateLegacyConfig(oldValue: IConfig) {
|
||||||
newValue.conferenceInfo = _getConferenceInfo(oldValue);
|
newValue.conferenceInfo = _getConferenceInfo(oldValue);
|
||||||
|
|
||||||
filteredConferenceInfo.forEach(key => {
|
filteredConferenceInfo.forEach(key => {
|
||||||
newValue.conferenceInfo ??= {};
|
newValue.conferenceInfo = oldValue.conferenceInfo ?? {};
|
||||||
// hideRecordingLabel does not mean not render it at all, but autoHide it
|
// hideRecordingLabel does not mean not render it at all, but autoHide it
|
||||||
if (key === 'hideRecordingLabel') {
|
if (key === 'hideRecordingLabel') {
|
||||||
newValue.conferenceInfo.alwaysVisible
|
newValue.conferenceInfo.alwaysVisible
|
||||||
|
|
Loading…
Reference in New Issue