diff --git a/openvidu-browser/src/OpenVidu/Connection.ts b/openvidu-browser/src/OpenVidu/Connection.ts
index 3f1a9fe9..1c122d8b 100644
--- a/openvidu-browser/src/OpenVidu/Connection.ts
+++ b/openvidu-browser/src/OpenVidu/Connection.ts
@@ -63,7 +63,7 @@ export class Connection {
role: string;
/**
- * Whether the streams published by this connection will be recorded or not. This only affects [INDIVIDUAL recording](/en/stable/advanced-features/recording#selecting-streams-to-be-recorded) PRO
+ * Whether the streams published by this Connection will be recorded or not. This only affects [INDIVIDUAL recording](/en/stable/advanced-features/recording/#individual-recording-selection) PRO
*
* **Only defined for the local connection. In remote connections will be `undefined`**
*/
@@ -203,4 +203,4 @@ export class Connection {
this.disposed = true;
}
-}
\ No newline at end of file
+}
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 8208c563..aff66866 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
@@ -113,7 +113,7 @@ public class Connection {
/**
* Whether the streams published by this Connection will be recorded or not.
* This only affects INDIVIDUAL recording.
*/
public boolean record() {
diff --git a/openvidu-java-client/src/main/java/io/openvidu/java/client/ConnectionProperties.java b/openvidu-java-client/src/main/java/io/openvidu/java/client/ConnectionProperties.java
index a9125dec..f61a339c 100644
--- a/openvidu-java-client/src/main/java/io/openvidu/java/client/ConnectionProperties.java
+++ b/openvidu-java-client/src/main/java/io/openvidu/java/client/ConnectionProperties.java
@@ -126,7 +126,7 @@ public class ConnectionProperties {
/**
* Call this method to flag the streams published by this Connection to be
* recorded or not. This only affects INDIVIDUAL recording. If not set by default will be true.
*/
public Builder record(boolean record) {
@@ -298,7 +298,7 @@ public class ConnectionProperties {
* 3px; font-size: 13px; line-height:21px; font-family: Montserrat,
* sans-serif">PRO Whether the streams published by this Connection will be
* recorded or not. This only affects INDIVIDUAL recording.
*/
public Boolean record() {
diff --git a/openvidu-node-client/src/ConnectionProperties.ts b/openvidu-node-client/src/ConnectionProperties.ts
index 77321c19..d3acc760 100644
--- a/openvidu-node-client/src/ConnectionProperties.ts
+++ b/openvidu-node-client/src/ConnectionProperties.ts
@@ -42,7 +42,7 @@ export interface ConnectionProperties {
/**
* **This feature is part of OpenVidu Pro tier** PRO
*
- * Whether to record the streams published by this Connection or not. This only affects [INDIVIDUAL recording](/en/stable/advanced-features/recording#selecting-streams-to-be-recorded)
+ * Whether to record the streams published by this Connection or not. This only affects [INDIVIDUAL recording](/en/stable/advanced-features/recording/#individual-recording-selection)
*
* @default true
*/
@@ -154,4 +154,4 @@ export interface ConnectionProperties {
*
*/
customIceServers?: IceServerProperties[];
-}
\ No newline at end of file
+}