diff options
author | Lucas CHOLLET <lucas.chollet@free.fr> | 2022-07-24 15:11:06 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-08-14 21:52:35 +0100 |
commit | 266e18e0b69846a08213535cac3504f1fc56cd62 (patch) | |
tree | d7334f4af161ddf90ff9cb742901203ec1d3e1d8 /Userland/Services/WebContent/main.cpp | |
parent | 07e89ad5382d4c8881ac6e5d998659f57da34439 (diff) | |
download | serenity-266e18e0b69846a08213535cac3504f1fc56cd62.zip |
Base: Launch Request at session start-up
Diffstat (limited to 'Userland/Services/WebContent/main.cpp')
-rw-r--r-- | Userland/Services/WebContent/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/WebContent/main.cpp b/Userland/Services/WebContent/main.cpp index 290a34b9a2..300002d33b 100644 --- a/Userland/Services/WebContent/main.cpp +++ b/Userland/Services/WebContent/main.cpp @@ -23,7 +23,7 @@ ErrorOr<int> serenity_main(Main::Arguments) TRY(Core::System::pledge("stdio recvfd sendfd accept unix rpath")); TRY(Core::System::unveil("/res", "r")); TRY(Core::System::unveil("/etc/timezone", "r")); - TRY(Core::System::unveil("/tmp/portal/request", "rw")); + TRY(Core::System::unveil("/tmp/user/%uid/portal/request", "rw")); TRY(Core::System::unveil("/tmp/portal/image", "rw")); TRY(Core::System::unveil("/tmp/portal/websocket", "rw")); TRY(Core::System::unveil(nullptr, nullptr)); |