Errores solucionados
This commit is contained in:
parent
e38a7e9820
commit
7c7763eb0a
10
src/main.js
10
src/main.js
|
@ -348,8 +348,14 @@ var App =
|
|||
|
||||
this._disableUi (false);
|
||||
|
||||
if (this.fso.fileExists (this.mdbFile))
|
||||
this.openMdb ();
|
||||
try {
|
||||
if (this.fso.fileExists (this.mdbFile))
|
||||
this.openMdb ();
|
||||
}
|
||||
catch (e)
|
||||
{
|
||||
this.showMessage (e.message);
|
||||
}
|
||||
},
|
||||
|
||||
openMdb: function ()
|
||||
|
|
Loading…
Reference in New Issue