We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 366c881 commit 13c4b45Copy full SHA for 13c4b45
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@codebolt/codeboltjs",
3
- "version": "1.1.45",
+ "version": "1.1.46",
4
"description": "",
5
"keywords": [],
6
"author": "",
src/modules/chat.ts
@@ -146,7 +146,7 @@ const cbchat = {
146
cbws.getWebsocket.on('message', (data: string) => {
147
const response = JSON.parse(data);
148
if (response.type === "confirmationResponse") {
149
- resolve(response.answer); // Resolve the Promise with the server's response
+ resolve(response); // Resolve the Promise with the server's response
150
}
151
});
152
0 commit comments