Skip to content

Commit

Permalink
adjust a text
Browse files Browse the repository at this point in the history
  • Loading branch information
Apollon77 committed Nov 23, 2023
1 parent f05e6e5 commit 76882d9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [18.x]

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [16.x, 18.x, 20.x]
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [18.x]

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -1405,7 +1405,7 @@ async function initDevice(deviceId, productKey, data, preserveFields, fromDiscov
}
}, value => {
knownDevices[deviceId].noLocalConnection = !!value;
adapter.log.info(`${deviceId}: ${value ? 'Do not connect' : 'Connect'} locally to device`);
adapter.log.info(`${deviceId}: ${value ? 'Device will not be connected locally' : 'Trying to connect locally to the device'}`);
if (knownDevices[deviceId].noLocalConnection) {
disconnectDevice(deviceId);
}
Expand Down

0 comments on commit 76882d9

Please sign in to comment.