diff options
author | Lucas CHOLLET <lucas.chollet@free.fr> | 2022-07-24 15:12:04 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-08-14 21:52:35 +0100 |
commit | ac7b0e69e5ba9dd1e56a2fdee0d044b55289d220 (patch) | |
tree | b8ddfa8af9756a2387cf08192664227977678ce4 /Userland/Applications/TextEditor/main.cpp | |
parent | 266e18e0b69846a08213535cac3504f1fc56cd62 (diff) | |
download | serenity-ac7b0e69e5ba9dd1e56a2fdee0d044b55289d220.zip |
Base: Launch WebContent at session start-up
Diffstat (limited to 'Userland/Applications/TextEditor/main.cpp')
-rw-r--r-- | Userland/Applications/TextEditor/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/TextEditor/main.cpp b/Userland/Applications/TextEditor/main.cpp index 2186bd9533..e8e56d6074 100644 --- a/Userland/Applications/TextEditor/main.cpp +++ b/Userland/Applications/TextEditor/main.cpp @@ -33,7 +33,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) TRY(Core::System::unveil("/res", "r")); TRY(Core::System::unveil("/tmp/user/%uid/portal/launch", "rw")); - TRY(Core::System::unveil("/tmp/portal/webcontent", "rw")); + TRY(Core::System::unveil("/tmp/user/%uid/portal/webcontent", "rw")); TRY(Core::System::unveil("/tmp/portal/filesystemaccess", "rw")); TRY(Core::System::unveil(nullptr, nullptr)); |