livekit-client 2.9.2 → 2.9.3
Sign up to get free protection for your applications and to get access to all the features.
@@ -11162,7 +11162,7 @@ function getOSVersion(ua) {
|
|
11162
11162
|
return ua.includes('mac os') ? getMatch(/\(.+?(\d+_\d+(:?_\d+)?)/, ua, 1).replace(/_/g, '.') : undefined;
|
11163
11163
|
}
|
11164
11164
|
|
11165
|
-
var version$1 = "2.9.
|
11165
|
+
var version$1 = "2.9.3";
|
11166
11166
|
|
11167
11167
|
const version = version$1;
|
11168
11168
|
const protocolVersion = 15;
|
@@ -20893,7 +20893,7 @@ class LocalParticipant extends Participant {
|
|
20893
20893
|
// Implement the sink
|
20894
20894
|
write(text) {
|
20895
20895
|
return __awaiter(this, void 0, void 0, function* () {
|
20896
|
-
for (const textChunk
|
20896
|
+
for (const textChunk of splitUtf8(text, STREAM_CHUNK_SIZE)) {
|
20897
20897
|
yield localP.engine.waitForBufferStatusLow(DataPacket_Kind.RELIABLE);
|
20898
20898
|
const chunk = new DataStream_Chunk({
|
20899
20899
|
content: new TextEncoder().encode(textChunk),
|