diff options
author | Lucas CHOLLET <lucas.chollet@free.fr> | 2022-07-24 15:11:06 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-08-14 21:52:35 +0100 |
commit | 266e18e0b69846a08213535cac3504f1fc56cd62 (patch) | |
tree | d7334f4af161ddf90ff9cb742901203ec1d3e1d8 /Userland/Libraries | |
parent | 07e89ad5382d4c8881ac6e5d998659f57da34439 (diff) | |
download | serenity-266e18e0b69846a08213535cac3504f1fc56cd62.zip |
Base: Launch Request at session start-up
Diffstat (limited to 'Userland/Libraries')
-rw-r--r-- | Userland/Libraries/LibProtocol/RequestClient.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibProtocol/RequestClient.h b/Userland/Libraries/LibProtocol/RequestClient.h index 5787228ae6..3cc54cca10 100644 --- a/Userland/Libraries/LibProtocol/RequestClient.h +++ b/Userland/Libraries/LibProtocol/RequestClient.h @@ -20,7 +20,7 @@ class Request; class RequestClient final : public IPC::ConnectionToServer<RequestClientEndpoint, RequestServerEndpoint> , public RequestClientEndpoint { - IPC_CLIENT_CONNECTION(RequestClient, "/tmp/portal/request"sv) + IPC_CLIENT_CONNECTION(RequestClient, "/tmp/user/%uid/portal/request"sv) public: template<typename RequestHashMapTraits = Traits<String>> |