fix: shortcut issue
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:
KernelDeimos
2025-01-09 11:51:26 -05:00
parent 740fdb592e
commit 6d196d59f0
2 changed files with 4 additions and 0 deletions
@@ -181,6 +181,7 @@ class FilesystemService extends BaseService {
const { _path, uuidv4 } = this.modules;
const svc_fsEntry = this.services.get('fsEntryService');
const resourceService = this.services.get('resourceService');
const ts = Math.round(Date.now() / 1000);
const uid = uuidv4();
@@ -317,6 +317,9 @@ class BaseOperation extends AdvancedBase {
async run (values) {
this.values = values;
values.user = values.user ??
(values.actor ? values.actor.type.user : undefined);
// getting context with a new operation frame
let x, frame; {
x = Context.get();