@fabriktor/client 0.0.46 → 0.0.48
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/src/chat/chat.js +2 -2
- package/package.json +1 -1
package/dist/src/chat/chat.js
CHANGED
|
@@ -107,7 +107,7 @@ export class ChatClient {
|
|
|
107
107
|
const token = await requiredToken(this.get_token);
|
|
108
108
|
return openWS({
|
|
109
109
|
base_url: this.base_url,
|
|
110
|
-
path: withQuery(chatRoomPath(
|
|
110
|
+
path: withQuery(chatRoomPath(PathChatWSMine), {
|
|
111
111
|
query: queryParam("id", opts.id),
|
|
112
112
|
}),
|
|
113
113
|
token,
|
|
@@ -120,7 +120,7 @@ export class ChatClient {
|
|
|
120
120
|
const token = await requiredToken(this.get_token);
|
|
121
121
|
return openWS({
|
|
122
122
|
base_url: this.base_url,
|
|
123
|
-
path: withQuery(chatRoomPath(
|
|
123
|
+
path: withQuery(chatRoomPath(PathChatWS), {
|
|
124
124
|
query: queryParam("owner_id", opts.owner_id),
|
|
125
125
|
}),
|
|
126
126
|
token,
|