diff options
author | Lucas CHOLLET <lucas.chollet@free.fr> | 2022-07-24 15:56:44 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-08-14 21:52:35 +0100 |
commit | 4f87f03bd1dd51774d89ec5a5a9bb064c025a0d6 (patch) | |
tree | dd4c30d3ac5748f2bf5dd467ad66cc7695f3c619 /Userland/Applets | |
parent | c248569d6b42083cf39618adf5d38ad772a216e9 (diff) | |
download | serenity-4f87f03bd1dd51774d89ec5a5a9bb064c025a0d6.zip |
Base: Launch AudioServer at session start-up
Diffstat (limited to 'Userland/Applets')
-rw-r--r-- | Userland/Applets/Audio/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applets/Audio/main.cpp b/Userland/Applets/Audio/main.cpp index 211b66a3e0..10a7b674f1 100644 --- a/Userland/Applets/Audio/main.cpp +++ b/Userland/Applets/Audio/main.cpp @@ -241,7 +241,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) auto app = TRY(GUI::Application::try_create(arguments)); Config::pledge_domain("AudioApplet"); - TRY(Core::System::unveil("/tmp/portal/audio", "rw")); + TRY(Core::System::unveil("/tmp/user/%uid/portal/audio", "rw")); TRY(Core::System::unveil("/res", "r")); TRY(Core::System::unveil(nullptr, nullptr)); |