mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 00:37:35 +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;
|
return;
|
||||||
}
|
}
|
||||||
auto maybe_path = maybe_page.value()->path();
|
auto maybe_path = maybe_page.value()->path();
|
||||||
if (!maybe_path.is_error())
|
if (maybe_path.is_error())
|
||||||
return;
|
return;
|
||||||
open_page(maybe_path.release_value());
|
open_page(maybe_path.release_value());
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue