diff options
author | Lucas CHOLLET <lucas.chollet@free.fr> | 2022-07-24 15:29:26 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-08-14 21:52:35 +0100 |
commit | 1da9375400533961cc5ac8992ad4bae827882470 (patch) | |
tree | 511ebcdb478084e90819c6dd063915f5f2668843 /Userland/Services | |
parent | e8115bfdb17a4792f50402ce22884910ee7de2ea (diff) | |
download | serenity-1da9375400533961cc5ac8992ad4bae827882470.zip |
Base: Launch ImageDecoder at session start-up
Diffstat (limited to 'Userland/Services')
-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 0db20b9016..9db9c3ed40 100644 --- a/Userland/Services/WebContent/main.cpp +++ b/Userland/Services/WebContent/main.cpp @@ -24,7 +24,7 @@ ErrorOr<int> serenity_main(Main::Arguments) TRY(Core::System::unveil("/res", "r")); TRY(Core::System::unveil("/etc/timezone", "r")); TRY(Core::System::unveil("/tmp/user/%uid/portal/request", "rw")); - TRY(Core::System::unveil("/tmp/portal/image", "rw")); + TRY(Core::System::unveil("/tmp/user/%uid/portal/image", "rw")); TRY(Core::System::unveil("/tmp/user/%uid/portal/websocket", "rw")); TRY(Core::System::unveil(nullptr, nullptr)); |