mirror of
https://github.com/HeyPuter/puter.git
synced 2026-05-06 01:20:41 +00:00
fix: bad uuid reference to resourceService
Docker Image CI / build-and-push-image (push) Waiting to run
Maintain Release Merge PR / update-release-pr (push) Waiting to run
release-please / release-please (push) Waiting to run
test / test (18.x) (push) Waiting to run
test / test (20.x) (push) Waiting to run
test / test (22.x) (push) Waiting to run
Docker Image CI / build-and-push-image (push) Waiting to run
Maintain Release Merge PR / update-release-pr (push) Waiting to run
release-please / release-please (push) Waiting to run
test / test (18.x) (push) Waiting to run
test / test (20.x) (push) Waiting to run
test / test (22.x) (push) Waiting to run
This commit is contained in:
@@ -85,8 +85,9 @@ class PuterFSProvider {
|
||||
}
|
||||
});
|
||||
|
||||
if ( resourceService.getResourceInfo(this.uid) ) {
|
||||
entry = await fsEntryService.get(this.uid, options);
|
||||
const maybe_uid = node.uid;
|
||||
if ( resourceService.getResourceInfo(maybe_uid) ) {
|
||||
entry = await fsEntryService.get(maybe_uid, options);
|
||||
controls.log.debug('got an entry from the future');
|
||||
} else {
|
||||
entry = await fsEntryFetcher.find(
|
||||
|
||||
Reference in New Issue
Block a user