1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-13 12:58:17 +03:00

Solved bug import wilds vCenter

This commit is contained in:
abelCoronado93 2017-07-13 12:58:40 +02:00 committed by Tino Vázquez
parent 98e5866080
commit 2c1ac615ea

View File

@ -351,8 +351,8 @@ define(function(require) {
},
error: function(response){
var msg;
if (error_json.error.message){
msg = error_json.error.message;
if (response.responseJSON && response.responseJSON.error.message){
msg = response.responseJSON.error.message;
} else {
msg = Locale.tr("Cannot contact server: is it running and reachable?");
}