diff --git a/openvidu-java-client/src/main/java/io/openvidu/java/client/Connection.java b/openvidu-java-client/src/main/java/io/openvidu/java/client/Connection.java index 49a65587..bd83936a 100644 --- a/openvidu-java-client/src/main/java/io/openvidu/java/client/Connection.java +++ b/openvidu-java-client/src/main/java/io/openvidu/java/client/Connection.java @@ -38,8 +38,9 @@ public class Connection { protected Map publishers; protected List subscribers; - protected Connection(String connectionId, long createdAt, OpenViduRole role, String token, String location, String platform, - String serverData, String clientData, Map publishers, List subscribers) { + protected Connection(String connectionId, long createdAt, OpenViduRole role, String token, String location, + String platform, String serverData, String clientData, Map publishers, + List subscribers) { this.connectionId = connectionId; this.createdAt = createdAt; this.role = role; @@ -84,10 +85,14 @@ public class Connection { } /** + * PRO + * * Returns the geo location of the connection, with the following format: * "CITY, COUNTRY" ("unknown" if it wasn't possible to * locate it) - * (ONLY IN OPENVIDU PRO) */ public String getLocation() { return location; diff --git a/openvidu-node-client/src/Connection.ts b/openvidu-node-client/src/Connection.ts index 76a342be..8f250a7e 100644 --- a/openvidu-node-client/src/Connection.ts +++ b/openvidu-node-client/src/Connection.ts @@ -44,8 +44,8 @@ export class Connection { token: string; /** + * PRO * Geo location of the connection, with the following format: `"CITY, COUNTRY"` (`"unknown"` if it wasn't possible to locate it) - * _(ONLY IN OPENVIDU PRO)_ */ location: string;