@overmap-ai/core 1.0.71-remove-login-timeout.1 → 1.0.71-remove-login-timeout.2
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.
|
@@ -264,9 +264,9 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
264
264
|
ret = responseBody.error;
|
|
265
265
|
} else if (typeof responseBody.message === "string") {
|
|
266
266
|
ret = responseBody.message;
|
|
267
|
-
} else
|
|
267
|
+
} else {
|
|
268
268
|
try {
|
|
269
|
-
ret = Object.entries(responseBody
|
|
269
|
+
ret = Object.entries(responseBody).map(([key, value]) => {
|
|
270
270
|
if (typeof value === "string") {
|
|
271
271
|
if (_SPECIAL_KEYS.includes(key)) return value;
|
|
272
272
|
return `${key}: ${value}`;
|