Add space after period.

pull/726/head
Flamenco 2022-05-20 13:15:33 -04:00 committed by GitHub
parent 75f4c6497f
commit 75a484e831
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -443,7 +443,7 @@ export class Session extends EventDispatcher {
if (!stream.connection) { if (!stream.connection) {
return reject(new Error('The associated Connection object of this Publisher is null')); return reject(new Error('The associated Connection object of this Publisher is null'));
} else if (stream.connection !== this.connection) { } 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")); "Only moderators can force unpublish on remote Streams via 'forceUnpublish' method"));
} else { } else {