@componentor/fs 3.0.33 → 3.0.35
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/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/workers/repair.worker.js +5 -2
- package/dist/workers/repair.worker.js.map +1 -1
- package/dist/workers/server.worker.js +5 -2
- package/dist/workers/server.worker.js.map +1 -1
- package/dist/workers/sync-relay.worker.js +5 -2
- package/dist/workers/sync-relay.worker.js.map +1 -1
- package/package.json +2 -2
|
@@ -891,8 +891,11 @@ var VFSEngine = class {
|
|
|
891
891
|
// ---- LSTAT (no symlink follow for the FINAL component) ----
|
|
892
892
|
lstat(path) {
|
|
893
893
|
path = this.normalizePath(path);
|
|
894
|
-
|
|
895
|
-
if (idx === void 0)
|
|
894
|
+
let idx = this.resolvePathComponents(path, false);
|
|
895
|
+
if (idx === void 0) {
|
|
896
|
+
idx = this.resolvePathComponents(path, true);
|
|
897
|
+
if (idx === void 0) return { status: CODE_TO_STATUS.ENOENT, data: null };
|
|
898
|
+
}
|
|
896
899
|
return this.encodeStatResponse(idx);
|
|
897
900
|
}
|
|
898
901
|
encodeStatResponse(idx) {
|