Skip to content

Commit

Permalink
fix: silence aca load failure (#12229)
Browse files Browse the repository at this point in the history
Fixes TIMOB-28210
  • Loading branch information
build committed Oct 28, 2020
1 parent c25a9dd commit f9e00fd
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions common/Resources/ti.internal/aca.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
* This allows ACA to be the first module to load on startup.
*/

try {
import('com.appcelerator.aca');
} catch (e) {
// Could not load module, silently ignore exception.
}
import('com.appcelerator.aca').catch(e => {
// No need to notify of ACA load failure.
});

0 comments on commit f9e00fd

Please sign in to comment.