Skip to content

Commit 522924b

Browse files
committed
fix
1 parent 716dfd8 commit 522924b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codebolt/codeboltjs",
3-
"version": "1.1.51",
3+
"version": "1.1.52",
44
"description": "",
55
"keywords": [],
66
"author": "",

src/modules/websocket.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ class cbws {
3333

3434
private getInitialMessage(): string {
3535
try {
36-
let fileContents = fs.readFileSync('./codeboltagent.yml', 'utf8');
36+
let fileContents = fs.readFileSync('./codeboltagent.yaml', 'utf8');
3737
let data: any = yaml.load(fileContents);
3838
return data.initial_message;
3939
} catch (e) {
40-
console.error('Unable to locate codeboltagent.yml file.');
40+
console.error('Unable to locate codeboltagent.yaml file.');
4141
return '';
4242
}
4343
}

0 commit comments

Comments
 (0)