mirror of
https://github.com/yume-chan/ya-webadb.git
synced 2025-10-03 09:49:24 +02:00
fix: adb-server-node-tcp returns incorrect reverse tunnel address (#663)
This commit is contained in:
parent
33823dfd54
commit
835796ec7b
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ export class AdbServerNodeTcpConnector
|
|||
|
||||
if (!address) {
|
||||
const info = server.address() as AddressInfo;
|
||||
address = `tcp:${info.address}:${info.port}`;
|
||||
address = `tcp:${info.port}`;
|
||||
}
|
||||
|
||||
this.#listeners.set(address, server);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue