From 75a484e831654c57d9fac9062ae17f44eb2f5cea Mon Sep 17 00:00:00 2001 From: Flamenco Date: Fri, 20 May 2022 13:15:33 -0400 Subject: [PATCH] Add space after period. --- openvidu-browser/src/OpenVidu/Session.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openvidu-browser/src/OpenVidu/Session.ts b/openvidu-browser/src/OpenVidu/Session.ts index d9aa3343..9105fedf 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 {