Skip to content

Commit

Permalink
Merge pull request #645 from manuc66/feature/fix_scan_directory_param…
Browse files Browse the repository at this point in the history
…eter

Fix parent directory parameter
  • Loading branch information
manuc66 authored Mar 22, 2023
2 parents 663707a + 4462951 commit c882183
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ async function main() {

const deviceUpPollingInterval = getDeviceUpPollingInterval(parentOption);

const scanConfig = getScanConfiguration(parentOption);
const scanConfig = getScanConfiguration(options);

await listenCmd(registrationConfig, scanConfig, deviceUpPollingInterval);
});
Expand Down Expand Up @@ -327,7 +327,7 @@ async function main() {

const deviceUpPollingInterval = getDeviceUpPollingInterval(parentOption);

const scanConfig = getScanConfiguration(parentOption);
const scanConfig = getScanConfiguration(options);

const adfScanConfig: AdfAutoScanConfig = {
...scanConfig,
Expand Down

0 comments on commit c882183

Please sign in to comment.