@magic-xpa/engine 4.900.0-dev490.232 → 4.900.0-dev490.235
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/env/LanguageData.mjs +3 -1
- package/fesm2015/magic-xpa-engine.mjs +3 -1
- package/fesm2015/magic-xpa-engine.mjs.map +1 -1
- package/fesm2020/magic-xpa-engine.mjs +3 -1
- package/fesm2020/magic-xpa-engine.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -6137,6 +6137,8 @@ class LanguageData {
|
|
|
6137
6137
|
}
|
|
6138
6138
|
}
|
|
6139
6139
|
else if (this._mlsFileUrl != null) {
|
|
6140
|
+
if (this._mlsFileUrl.startsWith("./"))
|
|
6141
|
+
this._mlsFileUrl = NString.Replace(this._mlsFileUrl, './', './assets/cache/');
|
|
6140
6142
|
let contentStr = await CommandsProcessorManager.GetContent(this._mlsFileUrl, true);
|
|
6141
6143
|
let buffer = contentStr;
|
|
6142
6144
|
if (buffer != null && buffer.length > 0) {
|
|
@@ -29538,7 +29540,7 @@ class CommandsTable {
|
|
|
29538
29540
|
}
|
|
29539
29541
|
}
|
|
29540
29542
|
|
|
29541
|
-
let CurrentClientVersion = '4.900.0-dev490.
|
|
29543
|
+
let CurrentClientVersion = '4.900.0-dev490.235';
|
|
29542
29544
|
|
|
29543
29545
|
class ClientManager {
|
|
29544
29546
|
constructor() {
|