Uses the wrapped fetch from base/util.

This commit is contained in:
damencho 2019-08-13 16:32:14 +03:00 committed by Дамян Минков
parent 2ded8363ad
commit 75ab890707
1 changed files with 3 additions and 9 deletions

View File

@ -3,6 +3,7 @@
import React, { Component } from 'react';
import { translate } from '../../../../base/i18n';
import { doGetJSON } from '../../../../base/util';
import ConferenceID from './ConferenceID';
import NumbersList from './NumbersList';
@ -176,11 +177,7 @@ class DialInSummary extends Component<Props, State> {
return Promise.resolve();
}
const conferenceIDURL
= `${dialInConfCodeUrl}?conference=${room}@${mucURL}`;
return fetch(conferenceIDURL)
.then(response => response.json())
return doGetJSON(`${dialInConfCodeUrl}?conference=${room}@${mucURL}`)
.catch(() => Promise.reject(this.props.t('info.genericError')));
}
@ -206,11 +203,8 @@ class DialInSummary extends Component<Props, State> {
if (room && mucURL) {
URLSuffix = `?conference=${room}@${mucURL}`;
}
const conferenceIDURL
= `${dialInNumbersUrl}${URLSuffix}`;
return fetch(conferenceIDURL)
.then(response => response.json())
return doGetJSON(`${dialInNumbersUrl}${URLSuffix}`)
.catch(() => Promise.reject(this.props.t('info.genericError')));
}