@magic-xpa/engine 4.1000.0-dev4100.107 → 4.1000.0-dev4100.108
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/esm2020/src/CurrentClientVersion.mjs +2 -2
- package/esm2020/src/util/FlowMonitorQueue.mjs +9 -5
- package/fesm2015/magic-xpa-engine.mjs +9 -5
- package/fesm2015/magic-xpa-engine.mjs.map +1 -1
- package/fesm2020/magic-xpa-engine.mjs +9 -5
- package/fesm2020/magic-xpa-engine.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -3690,11 +3690,15 @@ class FlowMonitorQueue {
|
|
|
3690
3690
|
break;
|
|
3691
3691
|
case StorageAttribute.BLOB:
|
|
3692
3692
|
{
|
|
3693
|
-
|
|
3694
|
-
|
|
3695
|
-
|
|
3693
|
+
if (BlobType.isValidBlob(data)) {
|
|
3694
|
+
let contentType = BlobType.getContentType(data);
|
|
3695
|
+
if (contentType == BlobType.CONTENT_TYPE_ANSI || contentType == BlobType.CONTENT_TYPE_UNICODE)
|
|
3696
|
+
data = data != null ? BlobType.getString(data) : "";
|
|
3697
|
+
else
|
|
3698
|
+
data = FlowMonitorQueue.UNPRINTABLE_STR_LOG;
|
|
3699
|
+
}
|
|
3696
3700
|
else
|
|
3697
|
-
data =
|
|
3701
|
+
data = "";
|
|
3698
3702
|
}
|
|
3699
3703
|
break;
|
|
3700
3704
|
case StorageAttribute.NUMERIC:
|
|
@@ -29529,7 +29533,7 @@ class CommandsTable {
|
|
|
29529
29533
|
}
|
|
29530
29534
|
}
|
|
29531
29535
|
|
|
29532
|
-
let CurrentClientVersion = '4.1000.0-dev4100.
|
|
29536
|
+
let CurrentClientVersion = '4.1000.0-dev4100.108';
|
|
29533
29537
|
|
|
29534
29538
|
class ClientManager {
|
|
29535
29539
|
constructor() {
|