trm-client 2.1.0 → 2.2.0
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/dist/commands/compare.js +2 -6
- package/package.json +1 -1
package/dist/commands/compare.js
CHANGED
|
@@ -144,18 +144,14 @@ function compare(commandArgs, actionArgs) {
|
|
|
144
144
|
connectionData.push(oConnection.getDest());
|
|
145
145
|
connectionData.push(oSystemViewManifest ? `Yes` : `No`);
|
|
146
146
|
connectionData.push(oSystemViewManifest ? oSystemViewManifest.version : '');
|
|
147
|
-
if (oSystemViewManifest) {
|
|
147
|
+
if (oSystemViewManifest && oSystemViewManifest.linkedTransport) {
|
|
148
148
|
const devclass = yield oSystemViewManifest.linkedTransport.getDevclass();
|
|
149
149
|
connectionData.push(devclass);
|
|
150
|
-
}
|
|
151
|
-
else {
|
|
152
|
-
connectionData.push('');
|
|
153
|
-
}
|
|
154
|
-
if (oSystemViewManifest && oSystemViewManifest.linkedTransport) {
|
|
155
150
|
connectionData.push(oSystemViewManifest.linkedTransport.trkorr);
|
|
156
151
|
}
|
|
157
152
|
else {
|
|
158
153
|
connectionData.push('');
|
|
154
|
+
connectionData.push('');
|
|
159
155
|
}
|
|
160
156
|
if (oSystemViewManifest) {
|
|
161
157
|
connectionData.push('');
|