diff options
author | Lucas CHOLLET <lucas.chollet@free.fr> | 2022-07-24 15:30:48 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-08-14 21:52:35 +0100 |
commit | b01822bdd463dc4860fcf2c38dd81fb5d607e207 (patch) | |
tree | 546cb6a799456a15557ff6224e48cca965299545 /Userland/Applets/Network/main.cpp | |
parent | 1da9375400533961cc5ac8992ad4bae827882470 (diff) | |
download | serenity-b01822bdd463dc4860fcf2c38dd81fb5d607e207.zip |
Base: Launch NotificationServer at session start-up
Diffstat (limited to 'Userland/Applets/Network/main.cpp')
-rw-r--r-- | Userland/Applets/Network/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applets/Network/main.cpp b/Userland/Applets/Network/main.cpp index 25d3466faa..cf67198a66 100644 --- a/Userland/Applets/Network/main.cpp +++ b/Userland/Applets/Network/main.cpp @@ -164,7 +164,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) auto app = TRY(GUI::Application::try_create(arguments)); TRY(Core::System::unveil("/res", "r")); - TRY(Core::System::unveil("/tmp/portal/notify", "rw")); + TRY(Core::System::unveil("/tmp/user/%uid/portal/notify", "rw")); TRY(Core::System::unveil("/proc/net/adapters", "r")); TRY(Core::System::unveil("/bin/SystemMonitor", "x")); TRY(Core::System::unveil(nullptr, nullptr)); |