@ascegu/teamily 1.0.7 → 1.0.8
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/package.json +1 -1
- package/src/monitor.ts +3 -0
package/package.json
CHANGED
package/src/monitor.ts
CHANGED
|
@@ -107,7 +107,10 @@ export class TeamilyMonitor {
|
|
|
107
107
|
this.setState("connecting");
|
|
108
108
|
|
|
109
109
|
const wsUrl = new URL(this.account.wsURL);
|
|
110
|
+
wsUrl.searchParams.set("sendID", this.account.userID);
|
|
110
111
|
wsUrl.searchParams.set("token", this.account.token);
|
|
112
|
+
wsUrl.searchParams.set("platformID", "5");
|
|
113
|
+
wsUrl.searchParams.set("sdkType", "js");
|
|
111
114
|
|
|
112
115
|
try {
|
|
113
116
|
const ws = new this.wsImpl(wsUrl.toString()) as WebSocket & { isMock?: boolean };
|