Skip to content

Commit

Permalink
Merge pull request #136 from garymathews/TIMOB-27723
Browse files Browse the repository at this point in the history
fix(android): emulator fails to launch
  • Loading branch information
garymathews committed Jan 21, 2020
2 parents e51cfdb + 2d508fa commit e0249ea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/emulators/avd.js
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ exports.start = function start(config, emu, opts, callback) {
});

socket.on('error', function (err) {
if (err.errno === 'ECONNREFUSED') {
if (err.code === 'ECONNREFUSED') {
// port available!
if (socket) {
socket.end();
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"titanium",
"mobile"
],
"version": "4.2.0",
"version": "4.2.1",
"author": {
"name": "Appcelerator, Inc.",
"email": "info@appcelerator.com"
Expand Down

0 comments on commit e0249ea

Please sign in to comment.