@atlisp/mcp 1.8.26 → 1.8.27
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/cad-rothelper.dll +0 -0
- package/dist/cad-worker.js +2 -1
- package/package.json +1 -1
package/dist/cad-rothelper.dll
CHANGED
|
Binary file
|
package/dist/cad-worker.js
CHANGED
|
@@ -248,6 +248,7 @@ string encoding = d.encoding != null ? d.encoding.ToString() : "";
|
|
|
248
248
|
|
|
249
249
|
int retries = 10;
|
|
250
250
|
string result = "";
|
|
251
|
+
string rawBase64 = "";
|
|
251
252
|
while (retries > 0 && !System.IO.File.Exists(tempFile)) {
|
|
252
253
|
System.Threading.Thread.Sleep(200);
|
|
253
254
|
retries--;
|
|
@@ -257,7 +258,7 @@ string encoding = d.encoding != null ? d.encoding.ToString() : "";
|
|
|
257
258
|
while (retries > 0) {
|
|
258
259
|
try {
|
|
259
260
|
byte[] bytes = System.IO.File.ReadAllBytes(tempFile);
|
|
260
|
-
|
|
261
|
+
rawBase64 = System.Convert.ToBase64String(bytes);
|
|
261
262
|
System.Text.Encoding enc;
|
|
262
263
|
|
|
263
264
|
if (!string.IsNullOrEmpty(encoding)) {
|