mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 09:18:05 +03:00
Help: Don't abort opening help:// URLs when error *didn't* occur
Fixes #14158
This commit is contained in:
parent
96f8cf2971
commit
26a4e4d23d
Notes:
sideshowbarker
2024-07-16 22:58:46 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/26a4e4d23d
@ -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…
Reference in New Issue
Block a user