Skip to content

Commit

Permalink
Do not scan devices if support says it's not possible, refs #233
Browse files Browse the repository at this point in the history
  • Loading branch information
sarxos committed Jul 15, 2014
1 parent 80f9e3c commit 885bba4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,9 @@ public void run() {
if (support == null) {
return;
}
if (!support.isScanPossible()) {
return;
}

// wait initial time interval since devices has been initially
// discovered
Expand Down

0 comments on commit 885bba4

Please sign in to comment.