Browse Source

Fixes a typo of getting default number.

master
damencho 6 years ago
parent
commit
6894de00cc
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      react/features/invite/components/info-dialog/InfoDialog.web.js

+ 1
- 1
react/features/invite/components/info-dialog/InfoDialog.web.js View File

@@ -128,7 +128,7 @@ class InfoDialog extends Component<Props, State> {
128 128
         let phoneNumber = state.phoneNumber;
129 129
 
130 130
         if (!state.phoneNumber && props.dialIn.numbers) {
131
-            phoneNumber = _getDefaultPhoneNumber(props.dialIn);
131
+            phoneNumber = _getDefaultPhoneNumber(props.dialIn.numbers);
132 132
         }
133 133
 
134 134
         return {

Loading…
Cancel
Save