Skip to content
This repository has been archived by the owner on Jul 5, 2021. It is now read-only.

Commit

Permalink
Fixes Bugzilla issue 1684986 (#5352)
Browse files Browse the repository at this point in the history
  • Loading branch information
st3fan committed Jan 29, 2021
1 parent 3782909 commit 4ca8cb5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -254,7 +254,7 @@ public void onReceivedHttpError(WebView view, WebResourceRequest request, WebRes
@Override
public void doUpdateVisitedHistory(WebView view, String url, boolean isReload) {
if (viewClient != null) {
viewClient.onURLChanged(url);
viewClient.onURLChanged(view.getUrl());
}
super.doUpdateVisitedHistory(view, url, isReload);
this.debugOverlay.updateHistory();
Expand Down

0 comments on commit 4ca8cb5

Please sign in to comment.