@magic-xpa/gui 4.1000.0-dev4100.62 → 4.1000.0-dev4100.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.
|
@@ -7081,7 +7081,7 @@ class RecordUtils {
|
|
|
7081
7081
|
case StorageAttribute.TIME:
|
|
7082
7082
|
itemVal = !toBase64
|
|
7083
7083
|
? itemVal.substr(0, significantNumSize)
|
|
7084
|
-
: Base64.encode(this.byteStreamToString(itemVal.substr(0, significantNumSize))
|
|
7084
|
+
: Base64.encode(this.byteStreamToString(itemVal.substr(0, significantNumSize)));
|
|
7085
7085
|
break;
|
|
7086
7086
|
case StorageAttribute.ALPHA:
|
|
7087
7087
|
case StorageAttribute.UNICODE:
|
|
@@ -7164,7 +7164,7 @@ class RecordUtils {
|
|
|
7164
7164
|
itemVal = itemVal.substr(pos, (fldValLen) - (pos));
|
|
7165
7165
|
itemVal = !toBase64
|
|
7166
7166
|
? StrUtil.stringToHexaDump(itemVal, 4)
|
|
7167
|
-
: Base64.encode(itemVal
|
|
7167
|
+
: Base64.encode(itemVal);
|
|
7168
7168
|
pos = fldValLen;
|
|
7169
7169
|
}
|
|
7170
7170
|
else {
|
|
@@ -7173,7 +7173,7 @@ class RecordUtils {
|
|
|
7173
7173
|
if (!toBase64)
|
|
7174
7174
|
tmpBuf.Append(StrUtil.stringToHexaDump(itemVal.substr(pos, 0x7FFF), 4));
|
|
7175
7175
|
else
|
|
7176
|
-
tmpBuf.Append(Base64.encode(itemVal.substr(pos, 0x7FFF)
|
|
7176
|
+
tmpBuf.Append(Base64.encode(itemVal.substr(pos, 0x7FFF)));
|
|
7177
7177
|
tmpBuf.Append("0000");
|
|
7178
7178
|
pos += 0x7FFF;
|
|
7179
7179
|
}
|