mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 00:07:34 +00:00
Help: Don't abort opening help:// URLs when error *didn't* occur
Fixes #14158
This commit is contained in:
parent
96f8cf2971
commit
26a4e4d23d
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ MainWidget::MainWidget()
|
|||
return;
|
||||
}
|
||||
auto maybe_path = maybe_page.value()->path();
|
||||
if (!maybe_path.is_error())
|
||||
if (maybe_path.is_error())
|
||||
return;
|
||||
open_page(maybe_path.release_value());
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue