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 716dfd8 commit 522924bCopy full SHA for 522924b
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@codebolt/codeboltjs",
3
- "version": "1.1.51",
+ "version": "1.1.52",
4
"description": "",
5
"keywords": [],
6
"author": "",
src/modules/websocket.ts
@@ -33,11 +33,11 @@ class cbws {
33
34
private getInitialMessage(): string {
35
try {
36
- let fileContents = fs.readFileSync('./codeboltagent.yml', 'utf8');
+ let fileContents = fs.readFileSync('./codeboltagent.yaml', 'utf8');
37
let data: any = yaml.load(fileContents);
38
return data.initial_message;
39
} catch (e) {
40
- console.error('Unable to locate codeboltagent.yml file.');
+ console.error('Unable to locate codeboltagent.yaml file.');
41
return '';
42
}
43
0 commit comments