eprolo-cli 1.0.65 → 1.0.66
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/bin/eprolo-cli.js +1 -1
- package/package.json +1 -1
package/bin/eprolo-cli.js
CHANGED
|
@@ -110,7 +110,7 @@ async function postJsonWithRetry(url, body, config) {
|
|
|
110
110
|
err.response = refreshRes.data;
|
|
111
111
|
throw err;
|
|
112
112
|
}
|
|
113
|
-
}else if (result.data.code !=
|
|
113
|
+
}else if (result.data.code != 0) {
|
|
114
114
|
const err = new Error(`HTTP ${result.statusCode}`);
|
|
115
115
|
err.response = 6666;
|
|
116
116
|
throw err;
|
package/package.json
CHANGED