diff --git a/Userland/Services/LaunchServer/Launcher.cpp b/Userland/Services/LaunchServer/Launcher.cpp index 1d3c39e748..c8765c26d6 100644 --- a/Userland/Services/LaunchServer/Launcher.cpp +++ b/Userland/Services/LaunchServer/Launcher.cpp @@ -331,6 +331,9 @@ bool Launcher::open_file_url(const URL& url) filepath = String::formatted("{}:{}", filepath, line.value()); } } + + additional_parameters.append(filepath); + return open_with_user_preferences(m_file_handlers, extension, additional_parameters, default_handler); } }