telos-server 1.0.25 → 1.0.26
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.
- package/package.json +1 -1
- package/telosServer.js +4 -1
package/package.json
CHANGED
package/telosServer.js
CHANGED
|
@@ -156,8 +156,11 @@ var telosServer = {
|
|
|
156
156
|
|
|
157
157
|
let config = telosUtils.getArguments(packet.content);
|
|
158
158
|
|
|
159
|
-
if(config.operation != 'telos-origin/telosOrigin.json' &&
|
|
159
|
+
if(config.operation != 'telos-origin/telosOrigin.json' &&
|
|
160
|
+
options.port == null) {
|
|
161
|
+
|
|
160
162
|
return;
|
|
163
|
+
}
|
|
161
164
|
|
|
162
165
|
let options = config.options;
|
|
163
166
|
|