bugfix/typo inetChecksite()

This commit is contained in:
Sebastian Hildebrandt 2017-09-21 11:45:17 +02:00
parent d1bd49a818
commit c1aee55c8c
2 changed files with 2 additions and 1 deletions

View File

@ -98,6 +98,7 @@ Other changes
| Version | Date | Comment |
| -------------- | -------------- | -------- |
| 3.30.1 | 2017-09-21 | bugfix/typo `inetChecksite()` |
| 3.30.0 | 2017-09-21 | extended `versions()` (added `yarn`, `gulp`, `grunt`, `tsc`, `git`) |
| 3.29.0 | 2017-09-15 | extended windows support `services()`, optimized `diskLayout()` (OSX), bugfixes |
| 3.28.0 | 2017-09-14 | extended windows support `processes()` |

View File

@ -78,7 +78,7 @@ function inetChecksite(url, callback) {
if (callback) { callback(result) }
resolve(result);
});
} catch (err) {s
} catch (err) {
if (callback) { callback(result) }
resolve(result);
}