Skip to content

Commit

Permalink
fix(cloud): Make all output msgs from reload status lower case
Browse files Browse the repository at this point in the history
...
  • Loading branch information
mountaindude committed Sep 12, 2023
1 parent 326342e commit 3b4676c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/cloud/reloadstatus.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ class ReloadStateMachine {
// Send message to output 2
const outMsg = {
payload: {
message: 'Timer started',
message: 'timer started',
},
};
this.node.send([null, outMsg]);
Expand Down Expand Up @@ -176,7 +176,7 @@ class ReloadStateMachine {
// Send message to output 2
const outMsg = {
payload: {
message: 'Timer stopped',
message: 'timer stopped',
},
};
this.node.send([null, outMsg]);
Expand Down

0 comments on commit 3b4676c

Please sign in to comment.