mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 11:45:36 +02:00
don't flip order on node socket, HifiSockAddr is handling
This commit is contained in:
parent
dc78a6f2c4
commit
2e5dc2320d
1 changed files with 1 additions and 1 deletions
|
@ -856,7 +856,7 @@ QJsonObject DomainServer::jsonForSocket(const HifiSockAddr& socket) {
|
|||
QJsonObject socketJSON;
|
||||
|
||||
socketJSON["ip"] = socket.getAddress().toString();
|
||||
socketJSON["port"] = ntohs(socket.getPort());
|
||||
socketJSON["port"] = socket.getPort();
|
||||
|
||||
return socketJSON;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue