byt-lingxiao-ai 0.3.14 → 0.3.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.umd.js
CHANGED
|
@@ -31315,7 +31315,6 @@ const TIME_JUMP_POINTS_URL = '/minio/lingxiaoai/timeJumpPoints.json'; // 语音u
|
|
|
31315
31315
|
data() {
|
|
31316
31316
|
return {
|
|
31317
31317
|
ws: null,
|
|
31318
|
-
wsUrl: WS_URL,
|
|
31319
31318
|
isConnected: false,
|
|
31320
31319
|
reconnectCount: 0,
|
|
31321
31320
|
// 重连尝试次数
|
|
@@ -31327,7 +31326,7 @@ const TIME_JUMP_POINTS_URL = '/minio/lingxiaoai/timeJumpPoints.json'; // 语音u
|
|
|
31327
31326
|
try {
|
|
31328
31327
|
// this.ws = new WebSocket('ws://10.2.233.41:9999');
|
|
31329
31328
|
// 测试
|
|
31330
|
-
this.ws = new WebSocket(
|
|
31329
|
+
this.ws = new WebSocket(WS_URL);
|
|
31331
31330
|
this.ws.binaryType = 'arraybuffer';
|
|
31332
31331
|
this.ws.onopen = async () => {
|
|
31333
31332
|
console.log('WebSocket 连接成功');
|