diff options
author | Lucas CHOLLET <lucas.chollet@free.fr> | 2022-07-24 15:28:42 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-08-14 21:52:35 +0100 |
commit | e8115bfdb17a4792f50402ce22884910ee7de2ea (patch) | |
tree | 23a6f6fa896e61da93775933c6a9df239651cedd /Userland/Libraries/LibFileSystemAccessClient | |
parent | e9e94ef3cc1836c88f263e272eaff5b693741a8f (diff) | |
download | serenity-e8115bfdb17a4792f50402ce22884910ee7de2ea.zip |
Base: Launch FileSystemAccessServer at session start-up
Diffstat (limited to 'Userland/Libraries/LibFileSystemAccessClient')
-rw-r--r-- | Userland/Libraries/LibFileSystemAccessClient/Client.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibFileSystemAccessClient/Client.h b/Userland/Libraries/LibFileSystemAccessClient/Client.h index c086ded70e..c62e51e453 100644 --- a/Userland/Libraries/LibFileSystemAccessClient/Client.h +++ b/Userland/Libraries/LibFileSystemAccessClient/Client.h @@ -23,7 +23,7 @@ using Result = ErrorOr<NonnullRefPtr<Core::File>>; class Client final : public IPC::ConnectionToServer<FileSystemAccessClientEndpoint, FileSystemAccessServerEndpoint> , public FileSystemAccessClientEndpoint { - IPC_CLIENT_CONNECTION(Client, "/tmp/portal/filesystemaccess"sv) + IPC_CLIENT_CONNECTION(Client, "/tmp/user/%uid/portal/filesystemaccess"sv) public: Result try_request_file_read_only_approved(GUI::Window* parent_window, String const& path); |