mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 06:47:34 +00:00
LibFileSystem+Userland: Return ByteString from real_path()
This commit is contained in:
parent
cdf17efb9a
commit
56c5ffe398
25 changed files with 44 additions and 40 deletions
|
@ -147,7 +147,7 @@ bool RunWindow::run_via_launch(ByteString const& run_input)
|
|||
warnln("Failed to launch '{}': {}", file_path, real_path_or_error.error());
|
||||
return false;
|
||||
}
|
||||
url = URL::create_with_url_or_path(real_path_or_error.release_value().to_byte_string());
|
||||
url = URL::create_with_url_or_path(real_path_or_error.release_value());
|
||||
}
|
||||
|
||||
if (!Desktop::Launcher::open(url)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue