Fixes shell/fetch regression

This commit is contained in:
Zef Hemel
2023-07-24 09:36:33 +02:00
parent 7cd88eca14
commit 804c688a46
5 changed files with 29 additions and 14 deletions
+2 -2
View File
@@ -126,12 +126,12 @@ export class ClientSystem {
// Syscalls that require some additional permissions
this.system.registerSyscalls(
["fetch"],
sandboxFetchSyscalls(this.editor.remoteSpacePrimitives),
sandboxFetchSyscalls(this.editor),
);
this.system.registerSyscalls(
["shell"],
shellSyscalls(this.editor.remoteSpacePrimitives),
shellSyscalls(this.editor),
);
}