jsharmony 1.40.2 → 1.40.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -113,6 +113,12 @@ exports = module.exports = function(jsh){
113
113
  scanTimer = setTimeout(autoEndScan, AUTOENDSCAN_TIMEOUT);
114
114
  }
115
115
  }
116
+ else {
117
+ if(options.autoEnd){
118
+ if(scanTimer){ clearTimeout(scanTimer); scanTimer = null; }
119
+ scanTimer = setTimeout(autoEndScan, AUTOENDSCAN_TIMEOUT);
120
+ }
121
+ }
116
122
  return;
117
123
  }
118
124
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jsharmony",
3
- "version": "1.40.2",
3
+ "version": "1.40.3",
4
4
  "description": "Rapid Application Development (RAD) Platform for Node.js Database Application Development",
5
5
  "main": "index.js",
6
6
  "scripts": {