@nine-lab/nine-mu 0.1.136 → 0.1.138
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/nine-mu.js +21 -21
- package/dist/nine-mu.js.map +1 -1
- package/dist/nine-mu.umd.js +3 -3
- package/dist/nine-mu.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/NineChatManager.js +2 -4
package/package.json
CHANGED
|
@@ -20,10 +20,10 @@ export class NineChatManager {
|
|
|
20
20
|
this.#onMessage = callbacks.onMessage;
|
|
21
21
|
|
|
22
22
|
// 연결 시작 (비동기)
|
|
23
|
-
this
|
|
23
|
+
this.#connect();
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
async connect() {
|
|
26
|
+
async #connect() {
|
|
27
27
|
if (this.#client) return;
|
|
28
28
|
try {
|
|
29
29
|
const transport = new WebSocketClientTransport(new URL(this.#connectorUrl));
|
|
@@ -117,5 +117,3 @@ export class NineChatManager {
|
|
|
117
117
|
trace.log(`[Status]: ${msg}`);
|
|
118
118
|
}
|
|
119
119
|
}
|
|
120
|
-
|
|
121
|
-
export default NineChatManager;
|