Skip to content

Commit

Permalink
Bugfix FXIOS-8680 - Clicking links open a new tab instead of opening …
Browse files Browse the repository at this point in the history
…about:blank (#19376) (#19378)

(cherry picked from commit 77bf13f)

Co-authored-by: dicarobinho <61138287+dicarobinho@users.noreply.github.com>
  • Loading branch information
mergify[bot] and dicarobinho committed Mar 26, 2024
1 parent 5d48600 commit f2eebc0
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ extension BrowserViewController: WKUIDelegate {
configuration: configuration
)

newTab.url = URL(string: "about:blank")
if navigationAction.request.url == nil {
newTab.url = URL(string: "about:blank")
}

return newTab.webView
}
Expand Down

1 comment on commit f2eebc0

@firefoxci-taskcluster
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Uh oh! Looks like an error! Details

InterpreterError at template.tasks[0].extra[0].treeherder[1].symbol: unknown context value cron

Please sign in to comment.