diff --git a/bigbluebutton-html5/client/main.jsx b/bigbluebutton-html5/client/main.jsx index 8a583b0253f1d10369c153db9a3d6b080121d85b..866765ab12b019369a6da99aedab39fc8e4f5b09 100755 --- a/bigbluebutton-html5/client/main.jsx +++ b/bigbluebutton-html5/client/main.jsx @@ -54,11 +54,11 @@ Meteor.startup(() => { .then(function (response) { return response.json(); }) - .done(function (data) { + .then(function (data) { setMessages(data); }) - .catch(function (err) { - console.log('Error: Locale not found :('); + .catch(function error(err) { + console.log('request failed', err); }); });