summaryrefslogtreecommitdiff
path: root/Userland/Libraries
diff options
context:
space:
mode:
authorLucas CHOLLET <lucas.chollet@free.fr>2022-07-24 15:32:41 +0200
committerLinus Groh <mail@linusgroh.de>2022-08-14 21:52:35 +0100
commitc248569d6b42083cf39618adf5d38ad772a216e9 (patch)
treebeb4bb8f133512d7489a47fc0f0d0b75a9b6f8c2 /Userland/Libraries
parentb01822bdd463dc4860fcf2c38dd81fb5d607e207 (diff)
downloadserenity-c248569d6b42083cf39618adf5d38ad772a216e9.zip
Base: Launch InspectorServer at session start-up
Diffstat (limited to 'Userland/Libraries')
-rw-r--r--Userland/Libraries/LibCore/EventLoop.cpp2
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;