summaryrefslogtreecommitdiff
path: root/Userland/Services
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2022-03-24 23:17:49 +0100
committerAndreas Kling <kling@serenityos.org>2022-03-24 23:17:49 +0100
commitc2d7ef057de23d9250dd5d01df2a05bd8c24217a (patch)
tree96838d038f6ef31f4ccd25e7ade1017a40ac656c /Userland/Services
parent6cffabef03837b52a260508c676566a273c24c69 (diff)
downloadserenity-c2d7ef057de23d9250dd5d01df2a05bd8c24217a.zip
WebContent: Remove accidentally committed unveil() call
Diffstat (limited to 'Userland/Services')
-rw-r--r--Userland/Services/WebContent/main.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Services/WebContent/main.cpp b/Userland/Services/WebContent/main.cpp
index 5d282482ca..351fd4b159 100644
--- a/Userland/Services/WebContent/main.cpp
+++ b/Userland/Services/WebContent/main.cpp
@@ -16,7 +16,6 @@ ErrorOr<int> serenity_main(Main::Arguments)
Core::EventLoop event_loop;
TRY(Core::System::pledge("stdio recvfd sendfd accept unix rpath"));
TRY(Core::System::unveil("/res", "r"));
- TRY(Core::System::unveil("/home", "r"));
TRY(Core::System::unveil("/etc/timezone", "r"));
TRY(Core::System::unveil("/tmp/portal/request", "rw"));
TRY(Core::System::unveil("/tmp/portal/image", "rw"));