Fix wording bug
This commit is contained in:
DonJGo 2020-05-19 21:29:21 +02:00 коммит произвёл GitHub
Родитель a5319f4e45
Коммит 3cd7d945b8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -191,19 +191,19 @@ module.exports = class Player {
if (response.error) {
console.log("Error getting server availability", response.error);
if (this.getServerAvailabilityErrorCallback) {
this.getServerAvailabilityErrorCallback(response.error);
if (this._getServerAvailabilityErrorCallback) {
this._getServerAvailabilityErrorCallback(response.error);
}
return;
}
if (!this.getServerAvailabilityCallback) {
if (!this._getServerAvailabilityCallback) {
console.log("No success callback binded !");
return;
}
this.getServerAvailabilityCallback(response.stats);
this._getServerAvailabilityCallback(response.stats);
return;
case _eventNames.ERROR:
this._displayErrorMessage(e.data.value);
@ -366,4 +366,4 @@ module.exports = class Player {
this.embed.contentWindow.postMessage({ type: _eventNames.GET_SERVER_AVAILABILITY }, _furioosServerUrl);
// The response will be treat in the listener below.
}
}
}