File tree 3 files changed +5
-7
lines changed
3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,9 @@ No feedbacks are provided. The native Internal Variable Check Value feedback is
45
45
46
46
## Version History
47
47
48
+ ### Version 1.0.3
49
+ - Minor fixes
50
+
48
51
### Version 1.0.1
49
52
- Better status updates
50
53
- Minor fixes & typos
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " peavy-ratc" ,
3
- "version" : " 1.0.2 " ,
3
+ "version" : " 1.0.3 " ,
4
4
"main" : " src/main.js" ,
5
5
"scripts" : {
6
6
"test" : " echo \" Error: no test specified\" && exit 1" ,
Original file line number Diff line number Diff line change @@ -17,13 +17,8 @@ class PEAVY_RATC extends InstanceBase {
17
17
this . controlAliases = [ ]
18
18
}
19
19
async init ( config ) {
20
- this . updateStatus ( 'Starting' )
20
+ this . updateStatus ( InstanceStatus . Connecting )
21
21
this . config = config
22
- if ( this . config . host === undefined || this . config . port === undefined ) {
23
- this . log ( 'error' , 'Host or port undefined' )
24
- this . updateStatus ( InstanceStatus . BadConfig )
25
- return undefined
26
- }
27
22
this . initVariables ( )
28
23
this . startTimeOut ( )
29
24
this . updateActions ( ) // export actions
You can’t perform that action at this time.
0 commit comments