1
Good morning,
I have a project in Ionic, that for 2 days I can not pass the home screen, due to a connection error. However, I did not change the config files, and I have another version of it, in the play store, that concta normally. Does anyone know if it can be version, or how to solve this situation?
Version of Ionic: 2.2.3 Version of Cordova: 6.5.0 Moodle Mobile App.
Pointed error of line:
Function consoleLog(type) { var console = $window.console || {}, logFn = console[type] || console.log || noop, hasApply = false;
// Note: reading logFn.apply throws an error in IE11 in IE8 document mode.
// The reason behind this is that console.log has type "object" in IE8...
try {
hasApply = !!logFn.apply;
} catch (e) {}
if (hasApply) {
return function() {
var args = [];
forEach(arguments, function(arg) {
args.push(formatError(arg));
});
return logFn.apply(console, args);
};
}
// we are IE which either doesn't have window.console => this is noop and we do nothing,
// or we are IE where console.log doesn't have apply so we log at least first 2 args
return function(arg1, arg2) {
logFn(arg1, arg2 == null ? '' : arg2);
};
}
Thank you.
Try in another browser.
– Diego Souza