We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dcca97 commit 1daa553Copy full SHA for 1daa553
lib/services/livesync/android-livesync-tool.ts
@@ -475,7 +475,9 @@ export class AndroidLivesyncTool implements IAndroidLivesyncTool {
475
this.pendingConnectionData.socketTimer = setTimeout(tryConnect, 1000);
476
};
477
478
- this.pendingConnectionData.socket = socket;
+ if (this.pendingConnectionData) {
479
+ this.pendingConnectionData.socket = socket;
480
+ }
481
482
socket.once("data", (data) => {
483
socket.removeListener("close", tryConnectAfterTimeout);
0 commit comments