diff --git a/openvidu-browser/src/OpenVidu/Session.ts b/openvidu-browser/src/OpenVidu/Session.ts index e41b622c..62b09a4d 100644 --- a/openvidu-browser/src/OpenVidu/Session.ts +++ b/openvidu-browser/src/OpenVidu/Session.ts @@ -443,7 +443,7 @@ export class Session extends EventDispatcher { if (!stream.connection) { return reject(new Error('The associated Connection object of this Publisher is null')); } else if (stream.connection !== this.connection) { - return reject(new Error('The associated Connection object of this Publisher is not your local Connection.' + + return reject(new Error('The associated Connection object of this Publisher is not your local Connection. ' + "Only moderators can force unpublish on remote Streams via 'forceUnpublish' method")); } else {