diff options
author | Lucas CHOLLET <lucas.chollet@free.fr> | 2022-07-24 15:32:41 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-08-14 21:52:35 +0100 |
commit | c248569d6b42083cf39618adf5d38ad772a216e9 (patch) | |
tree | beb4bb8f133512d7489a47fc0f0d0b75a9b6f8c2 /Userland/Libraries | |
parent | b01822bdd463dc4860fcf2c38dd81fb5d607e207 (diff) | |
download | serenity-c248569d6b42083cf39618adf5d38ad772a216e9.zip |
Base: Launch InspectorServer at session start-up
Diffstat (limited to 'Userland/Libraries')
-rw-r--r-- | Userland/Libraries/LibCore/EventLoop.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibCore/EventLoop.cpp b/Userland/Libraries/LibCore/EventLoop.cpp index 6c76c45f95..3e8a4a392a 100644 --- a/Userland/Libraries/LibCore/EventLoop.cpp +++ b/Userland/Libraries/LibCore/EventLoop.cpp @@ -359,7 +359,7 @@ EventLoop::~EventLoop() bool connect_to_inspector_server() { #ifdef __serenity__ - auto maybe_socket = Core::Stream::LocalSocket::connect("/tmp/portal/inspectables"); + auto maybe_socket = Core::Stream::LocalSocket::connect("/tmp/user/%uid/portal/inspectables"); if (maybe_socket.is_error()) { dbgln("connect_to_inspector_server: Failed to connect: {}", maybe_socket.error()); return false; |